From: Michael Grzeschik Date: Fri, 29 Nov 2013 13:14:29 +0000 (+0100) Subject: mtd: mxc_nand: remove duplicated ecc_stats counting X-Git-Tag: v3.12.11~76 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9af6a8e68fd7c2469cfe50d1c982a8b8194259e8;p=kernel%2Fkernel-generic.git mtd: mxc_nand: remove duplicated ecc_stats counting commit 0566477762f9e174e97af347ee9c865f908a5647 upstream. The ecc_stats.corrected count variable will already be incremented in the above framework-layer just after this callback. Signed-off-by: Michael Grzeschik Signed-off-by: Brian Norris Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index ce8242b..e5c0e59 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -676,7 +676,6 @@ static int mxc_nand_correct_data_v2_v3(struct mtd_info *mtd, u_char *dat, ecc_stat >>= 4; } while (--no_subpages); - mtd->ecc_stats.corrected += ret; pr_debug("%d Symbol Correctable RS-ECC Error\n", ret); return ret;