|
@@ -1075,7 +1075,8 @@ static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
|
|
|
uint8_t *buf, int oob_required, int page)
|
|
|
{
|
|
|
chip->read_buf(mtd, buf, mtd->writesize);
|
|
|
- chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
|
|
|
+ if (oob_required)
|
|
|
+ chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -1928,7 +1929,8 @@ static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
|
|
|
const uint8_t *buf, int oob_required)
|
|
|
{
|
|
|
chip->write_buf(mtd, buf, mtd->writesize);
|
|
|
- chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
|
|
|
+ if (oob_required)
|
|
|
+ chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
|
|
|
}
|
|
|
|
|
|
/**
|