diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-05-26 18:05:44 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-05-26 18:05:44 -0400 |
commit | 29da9cea46f65cb9488641354fe554e9ef8a3a85 (patch) | |
tree | 1f7f075e554ef2282510b4c6d9a761043cae072b /drivers/mtd/nand/nand_base.c | |
parent | 9bfeb691e75b21fdaa80ffae719083200b190381 (diff) |
[MTD] Fix thinko in nand_write_page_hwecc()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand/nand_base.c')
-rw-r--r-- | drivers/mtd/nand/nand_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
1233 | 1233 | ||
1234 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { | 1234 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
1235 | chip->ecc.hwctl(mtd, NAND_ECC_WRITE); | 1235 | chip->ecc.hwctl(mtd, NAND_ECC_WRITE); |
1236 | chip->write_buf(mtd, p, mtd->writesize); | 1236 | chip->write_buf(mtd, p, eccsize); |
1237 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); | 1237 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
1238 | } | 1238 | } |
1239 | 1239 | ||