summaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorBrian Norris2012-05-02 19:15:03 +0200
committerDavid Woodhouse2012-05-14 06:21:57 +0200
commit279f08d4ef6548be4e2fa638245adebc77436e54 (patch)
treefd3e1587109063069206bf1825459be891e3a6f1 /drivers/mtd
parentmtd: gpmi-nand: utilize oob_requested parameter (diff)
downloadkernel-qcow2-linux-279f08d4ef6548be4e2fa638245adebc77436e54.tar.gz
kernel-qcow2-linux-279f08d4ef6548be4e2fa638245adebc77436e54.tar.xz
kernel-qcow2-linux-279f08d4ef6548be4e2fa638245adebc77436e54.zip
mtd: nand: utilize oob_required parameter
Don't read/write OOB if the caller doesn't require it. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/nand/nand_base.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 464b742431ed..14e9b32ed8c7 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -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);
}
/**