[PATCH] mtd: mtdconcat: map: remove redundant assignment to variable 'size'

From: Colin King
Date: Thu Sep 10 2020 - 12:06:24 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

Variable 'size' is being assigned the value zero that will never be
read. The assignment is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
---
drivers/mtd/mtdconcat.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/mtd/mtdconcat.c b/drivers/mtd/mtdconcat.c
index 242c3a660002..6e4d0017c0bd 100644
--- a/drivers/mtd/mtdconcat.c
+++ b/drivers/mtd/mtdconcat.c
@@ -114,7 +114,6 @@ concat_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
size_t size, retsize;

if (to >= subdev->size) {
- size = 0;
to -= subdev->size;
continue;
}
--
2.27.0