aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/raw/omap_elm.c
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2021-12-21 18:13:40 +0000
committerMiquel Raynal <miquel.raynal@bootlin.com>2022-01-23 17:08:50 +0100
commit2212c19e51969213924ab538396b6c1e072c41f1 (patch)
treea459b57172e6e9f660c00592f849f6802db547c6 /drivers/mtd/nand/raw/omap_elm.c
parentmtd: rawnand: gpmi: support fast edo timings for mx28 (diff)
downloadlinux-dev-2212c19e51969213924ab538396b6c1e072c41f1.tar.xz
linux-dev-2212c19e51969213924ab538396b6c1e072c41f1.zip
mtd: rawnand: omap_elm: remove redundant variable 'errors'
The variable 'errors' is being used to sum the number of errors but it is never used afterwards. This can be considered a redundant set of operations and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20211221181340.524639-1-colin.i.king@gmail.com
Diffstat (limited to 'drivers/mtd/nand/raw/omap_elm.c')
-rw-r--r--drivers/mtd/nand/raw/omap_elm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mtd/nand/raw/omap_elm.c b/drivers/mtd/nand/raw/omap_elm.c
index db105d9b560c..893e9979c4a2 100644
--- a/drivers/mtd/nand/raw/omap_elm.c
+++ b/drivers/mtd/nand/raw/omap_elm.c
@@ -282,7 +282,7 @@ static void elm_start_processing(struct elm_info *info,
static void elm_error_correction(struct elm_info *info,
struct elm_errorvec *err_vec)
{
- int i, j, errors = 0;
+ int i, j;
int offset;
u32 reg_val;
@@ -312,8 +312,6 @@ static void elm_error_correction(struct elm_info *info,
/* Update error location register */
offset += 4;
}
-
- errors += err_vec[i].error_count;
} else {
err_vec[i].error_uncorrectable = true;
}