From: David Woodhouse Date: Fri, 26 May 2006 22:05:44 +0000 (+0100) Subject: [MTD] Fix thinko in nand_write_page_hwecc() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=29da9cea46f65cb9488641354fe554e9ef8a3a85;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [MTD] Fix thinko in nand_write_page_hwecc() Signed-off-by: Thomas Gleixner Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index cead9fc4f99f..bb18476acd7b 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -1233,7 +1233,7 @@ static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip, for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { chip->ecc.hwctl(mtd, NAND_ECC_WRITE); - chip->write_buf(mtd, p, mtd->writesize); + chip->write_buf(mtd, p, eccsize); chip->ecc.calculate(mtd, p, &ecc_calc[i]); }