diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 03:58:59 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-29 08:56:23 -0400 |
commit | 8074cf063e410a2c0cf1704c3b31002e21f5df7c (patch) | |
tree | 95916834ce2302ed113ecba7622dc09091eb6709 /drivers/spi/spi-fsl-lib.c | |
parent | a4f2ca3e62e6c06f105d7953feeca2a403bdbee3 (diff) |
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-fsl-lib.c')
-rw-r--r-- | drivers/spi/spi-fsl-lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-fsl-lib.c b/drivers/spi/spi-fsl-lib.c index e947f2d1b2f5..0b75f26158ab 100644 --- a/drivers/spi/spi-fsl-lib.c +++ b/drivers/spi/spi-fsl-lib.c | |||
@@ -122,7 +122,7 @@ const char *mpc8xxx_spi_strmode(unsigned int flags) | |||
122 | int mpc8xxx_spi_probe(struct device *dev, struct resource *mem, | 122 | int mpc8xxx_spi_probe(struct device *dev, struct resource *mem, |
123 | unsigned int irq) | 123 | unsigned int irq) |
124 | { | 124 | { |
125 | struct fsl_spi_platform_data *pdata = dev->platform_data; | 125 | struct fsl_spi_platform_data *pdata = dev_get_platdata(dev); |
126 | struct spi_master *master; | 126 | struct spi_master *master; |
127 | struct mpc8xxx_spi *mpc8xxx_spi; | 127 | struct mpc8xxx_spi *mpc8xxx_spi; |
128 | int ret = 0; | 128 | int ret = 0; |