aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-10-21 20:47:45 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2006-10-21 20:47:45 -0400
commit784f4d5e66ac1d962091e08fe5a4b238ed8c793d (patch)
tree3bf9163bca4eeb00652b6aaa306b74ae23392418 /drivers/mtd/nand
parent7dcdcbef5d2b60d1db68fd2c07351f7afd8ad376 (diff)
[MTD] NAND: Correct setting of chip->oob_poi OOB buffer
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/nand_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 29090c6d4819..f23ab2c70433 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -2344,7 +2344,7 @@ int nand_scan_tail(struct mtd_info *mtd)
2344 return -ENOMEM; 2344 return -ENOMEM;
2345 2345
2346 /* Set the internal oob buffer location, just after the page data */ 2346 /* Set the internal oob buffer location, just after the page data */
2347 chip->oob_poi = chip->buffers + mtd->writesize; 2347 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
2348 2348
2349 /* 2349 /*
2350 * If no default placement scheme is given, select an appropriate one 2350 * If no default placement scheme is given, select an appropriate one