diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-05-23 06:20:40 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-05-23 10:09:55 -0400 |
commit | 24b5a82cf5709a4bc577f42fdaa61b23a7f58f08 (patch) | |
tree | 39c17c904a2ac67c8b76b9edccf1da00f3620998 /drivers/spi/spi-davinci.c | |
parent | c7788792a5e7b0d5d7f96d0766b4cb6112d47d75 (diff) |
spi: use platform_{get,set}_drvdata()
Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi-davinci.c')
-rw-r--r-- | drivers/spi/spi-davinci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-davinci.c b/drivers/spi/spi-davinci.c index 50b13c9b1ab6..968e36416cfa 100644 --- a/drivers/spi/spi-davinci.c +++ b/drivers/spi/spi-davinci.c | |||
@@ -865,7 +865,7 @@ static int davinci_spi_probe(struct platform_device *pdev) | |||
865 | goto err; | 865 | goto err; |
866 | } | 866 | } |
867 | 867 | ||
868 | dev_set_drvdata(&pdev->dev, master); | 868 | platform_set_drvdata(pdev, master); |
869 | 869 | ||
870 | dspi = spi_master_get_devdata(master); | 870 | dspi = spi_master_get_devdata(master); |
871 | if (dspi == NULL) { | 871 | if (dspi == NULL) { |
@@ -1044,7 +1044,7 @@ static int davinci_spi_remove(struct platform_device *pdev) | |||
1044 | struct spi_master *master; | 1044 | struct spi_master *master; |
1045 | struct resource *r; | 1045 | struct resource *r; |
1046 | 1046 | ||
1047 | master = dev_get_drvdata(&pdev->dev); | 1047 | master = platform_get_drvdata(pdev); |
1048 | dspi = spi_master_get_devdata(master); | 1048 | dspi = spi_master_get_devdata(master); |
1049 | 1049 | ||
1050 | spi_bitbang_stop(&dspi->bitbang); | 1050 | spi_bitbang_stop(&dspi->bitbang); |