aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/omap2.c
diff options
context:
space:
mode:
authorAfzal Mohammed <afzal@ti.com>2012-09-29 11:22:21 +0530
committerAfzal Mohammed <afzal@ti.com>2012-10-15 14:41:58 +0530
commit4ea1e4ba7bec0a3d490a846376140643e4860536 (patch)
treecce3b1c9848f31a5dd490689d58e424afd273178 /drivers/mtd/nand/omap2.c
parentmtd: nand: omap: free region as per resource size (diff)
downloadlinux-dev-4ea1e4ba7bec0a3d490a846376140643e4860536.tar.xz
linux-dev-4ea1e4ba7bec0a3d490a846376140643e4860536.zip
mtd: nand: omap: read nand using register address
Now that gpmc-nand registers are available in driver, use it to read nand data. "65b97cf mtd: nand: omap2: handle nand on gpmc" modified all other instances. After initial versions of that patch, a new change added reading nand data using gpmc exposed function. In the final version this change was not taken care. Signed-off-by: Afzal Mohammed <afzal@ti.com>
Diffstat (limited to '')
-rw-r--r--drivers/mtd/nand/omap2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 4c331356a882..abfc602c4cfc 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -996,7 +996,7 @@ static int omap_wait(struct mtd_info *mtd, struct nand_chip *chip)
cond_resched();
}
- status = gpmc_nand_read(info->gpmc_cs, GPMC_NAND_DATA);
+ status = readb(info->reg.gpmc_nand_data);
return status;
}