diff options
| author | Jingoo Han <[email protected]> | 2013-05-23 10:20:40 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2013-05-23 14:09:55 +0000 |
| commit | 24b5a82cf5709a4bc577f42fdaa61b23a7f58f08 (patch) | |
| tree | 39c17c904a2ac67c8b76b9edccf1da00f3620998 /drivers/spi/spi-davinci.c | |
| parent | Linux 3.10-rc2 (diff) | |
| download | kernel-24b5a82cf5709a4bc577f42fdaa61b23a7f58f08.tar.gz kernel-24b5a82cf5709a4bc577f42fdaa61b23a7f58f08.zip | |
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 <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
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) goto err; } - dev_set_drvdata(&pdev->dev, master); + platform_set_drvdata(pdev, master); dspi = spi_master_get_devdata(master); if (dspi == NULL) { @@ -1044,7 +1044,7 @@ static int davinci_spi_remove(struct platform_device *pdev) struct spi_master *master; struct resource *r; - master = dev_get_drvdata(&pdev->dev); + master = platform_get_drvdata(pdev); dspi = spi_master_get_devdata(master); spi_bitbang_stop(&dspi->bitbang); |
