mtd: ubi: remove redundant check on bytes_left at end of function
authorColin Ian King <colin.i.king@gmail.com>
Thu, 7 Nov 2024 15:23:57 +0000 (15:23 +0000)
committerRichard Weinberger <richard@nod.at>
Thu, 14 Nov 2024 18:54:27 +0000 (19:54 +0100)
commit67efb77cb0692ec40c416eae2dfbc70116e8ea4e
tree5ac538dade2b852c8b0c539c3f1a5e9f1f616ce1
parent07593293ffabba14125c8998525adde5a832bfa3
mtd: ubi: remove redundant check on bytes_left at end of function

In function ubi_nvmem_reg_read the while-loop can only be exiting
of bytes_left is zero or an error has occurred. There is an exit
return path if an error occurs, so the bytes_left can only be
zero after that point. Hence the check for a non-zero bytes_left
at the end of the function is redundant and can be removed. Remove
the check and just return 0.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/ubi/nvmem.c