diff options
| author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 17:18:33 +0900 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2014-11-28 23:37:15 -0800 |
| commit | 2089fda5916da61235c3b39c26a24031c5206036 (patch) | |
| tree | 3482ea2e8f68d01d1599430618705a21c7d69018 /drivers/mtd/nand/lpc32xx_slc.c | |
| parent | 181592d214b8629ef7756a94e8158562e276f831 (diff) | |
| download | olio-linux-3.10-2089fda5916da61235c3b39c26a24031c5206036.tar.xz olio-linux-3.10-2089fda5916da61235c3b39c26a24031c5206036.zip | |
mtd: nand: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of
accessing dev->platform_data directly.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Conflicts:
drivers/mtd/nand/gpio.c
drivers/mtd/nand/pxa3xx_nand.c
Change-Id: I43a3aa34f7d354cbf7e971b3a1c77edab91d3874
Diffstat (limited to 'drivers/mtd/nand/lpc32xx_slc.c')
| -rw-r--r-- | drivers/mtd/nand/lpc32xx_slc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/lpc32xx_slc.c b/drivers/mtd/nand/lpc32xx_slc.c index be94ed5abef..81cd0719f03 100644 --- a/drivers/mtd/nand/lpc32xx_slc.c +++ b/drivers/mtd/nand/lpc32xx_slc.c @@ -798,7 +798,7 @@ static int lpc32xx_nand_probe(struct platform_device *pdev) } lpc32xx_wp_disable(host); - host->pdata = pdev->dev.platform_data; + host->pdata = dev_get_platdata(&pdev->dev); mtd = &host->mtd; chip = &host->nand_chip; |