diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2008-02-02 21:06:45 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-02-03 02:31:52 -0500 |
commit | a50367784ea6ef8d4276daac0dfcfaa896f8530b (patch) | |
tree | 248e89a74d62e7e057fc6ae4548faee077077869 /drivers/mtd/nand | |
parent | b7e23d913aafc93fc5f119e1be17620073cc3811 (diff) |
[MTD] [NAND] Remove unused variable in plat_nand_remove
With CONFIG_MTD_PARTITIONS not set, got this:
drivers/mtd/nand/plat_nand.c:113: warning: unused variable 'pdata'
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/plat_nand.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/nand/plat_nand.c b/drivers/mtd/nand/plat_nand.c index cd725fc5e813..f6d5c2adc4fd 100644 --- a/drivers/mtd/nand/plat_nand.c +++ b/drivers/mtd/nand/plat_nand.c | |||
@@ -110,7 +110,9 @@ out: | |||
110 | static int __devexit plat_nand_remove(struct platform_device *pdev) | 110 | static int __devexit plat_nand_remove(struct platform_device *pdev) |
111 | { | 111 | { |
112 | struct plat_nand_data *data = platform_get_drvdata(pdev); | 112 | struct plat_nand_data *data = platform_get_drvdata(pdev); |
113 | #ifdef CONFIG_MTD_PARTITIONS | ||
113 | struct platform_nand_data *pdata = pdev->dev.platform_data; | 114 | struct platform_nand_data *pdata = pdev->dev.platform_data; |
115 | #endif | ||
114 | 116 | ||
115 | nand_release(&data->mtd); | 117 | nand_release(&data->mtd); |
116 | #ifdef CONFIG_MTD_PARTITIONS | 118 | #ifdef CONFIG_MTD_PARTITIONS |