diff options
author | Eric Miao <eric.miao@marvell.com> | 2008-05-21 17:26:15 +0800 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-06-04 17:37:25 +0100 |
commit | 9b62d864314736fb6cc5c5db5b964d4a3c093424 (patch) | |
tree | 31f6bc945348c1b188d3f9e43eaa6e1a6143a2b5 /drivers/mtd/nand/pxa3xx_nand.c | |
parent | c3b25b32e8bef526cca748e1ba023c6bdd705a99 (diff) | |
download | talos-obmc-linux-9b62d864314736fb6cc5c5db5b964d4a3c093424.tar.gz talos-obmc-linux-9b62d864314736fb6cc5c5db5b964d4a3c093424.zip |
[MTD] [NAND] pxa: fix incorrect calling of pxa3xx_nand_config() on resume path
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand/pxa3xx_nand.c')
-rw-r--r-- | drivers/mtd/nand/pxa3xx_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index fceb468ccdec..fe2bc7e42119 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c @@ -1216,7 +1216,7 @@ static int pxa3xx_nand_resume(struct platform_device *pdev) clk_enable(info->clk); - return pxa3xx_nand_config_flash(info); + return pxa3xx_nand_config_flash(info, info->flash_info); } #else #define pxa3xx_nand_suspend NULL |