aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nand_base.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd/nand/nand_base.c')
-rw-r--r--drivers/mtd/nand/nand_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 62b861304e03..cffd66309ffa 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -1203,7 +1203,7 @@ static int nand_write_oob_syndrome(struct mtd_info *mtd,
1203 pos = steps * (eccsize + chunk); 1203 pos = steps * (eccsize + chunk);
1204 steps = 0; 1204 steps = 0;
1205 } else 1205 } else
1206 pos = eccsize + chunk; 1206 pos = eccsize;
1207 1207
1208 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page); 1208 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1209 for (i = 0; i < steps; i++) { 1209 for (i = 0; i < steps; i++) {
@@ -1566,7 +1566,7 @@ static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob,
1566 bytes = min_t(size_t, len, free->length); 1566 bytes = min_t(size_t, len, free->length);
1567 boffs = free->offset; 1567 boffs = free->offset;
1568 } 1568 }
1569 memcpy(chip->oob_poi + woffs, oob, bytes); 1569 memcpy(chip->oob_poi + boffs, oob, bytes);
1570 oob += bytes; 1570 oob += bytes;
1571 } 1571 }
1572 return oob; 1572 return oob;