diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 07:58:59 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-29 12:56:23 (GMT) |
commit | 8074cf063e410a2c0cf1704c3b31002e21f5df7c (patch) | |
tree | 95916834ce2302ed113ecba7622dc09091eb6709 /drivers/spi/spi-s3c64xx.c | |
parent | a4f2ca3e62e6c06f105d7953feeca2a403bdbee3 (diff) | |
download | linux-8074cf063e410a2c0cf1704c3b31002e21f5df7c.tar.xz |
spi: 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: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-s3c64xx.c')
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index eb53df2..25cf671 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -1272,7 +1272,7 @@ static struct s3c64xx_spi_info *s3c64xx_spi_parse_dt(struct device *dev) #else static struct s3c64xx_spi_info *s3c64xx_spi_parse_dt(struct device *dev) { - return dev->platform_data; + return dev_get_platdata(dev); } #endif @@ -1297,7 +1297,7 @@ static int s3c64xx_spi_probe(struct platform_device *pdev) struct resource *mem_res; struct resource *res; struct s3c64xx_spi_driver_data *sdd; - struct s3c64xx_spi_info *sci = pdev->dev.platform_data; + struct s3c64xx_spi_info *sci = dev_get_platdata(&pdev->dev); struct spi_master *master; int ret, irq; char clk_name[16]; |