summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-bcm63xx.c
diff options
context:
space:
mode:
authorJingoo Han2013-07-30 09:58:59 +0200
committerMark Brown2013-08-29 14:56:23 +0200
commit8074cf063e410a2c0cf1704c3b31002e21f5df7c (patch)
tree95916834ce2302ed113ecba7622dc09091eb6709 /drivers/spi/spi-bcm63xx.c
parentMerge remote-tracking branch 'spi/topic/xilinx' into spi-pdata (diff)
downloadkernel-qcow2-linux-8074cf063e410a2c0cf1704c3b31002e21f5df7c.tar.gz
kernel-qcow2-linux-8074cf063e410a2c0cf1704c3b31002e21f5df7c.tar.xz
kernel-qcow2-linux-8074cf063e410a2c0cf1704c3b31002e21f5df7c.zip
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-bcm63xx.c')
-rw-r--r--drivers/spi/spi-bcm63xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm63xx.c b/drivers/spi/spi-bcm63xx.c
index 9fd7a39b8029..6d0df500aa8f 100644
--- a/drivers/spi/spi-bcm63xx.c
+++ b/drivers/spi/spi-bcm63xx.c
@@ -353,7 +353,7 @@ static int bcm63xx_spi_probe(struct platform_device *pdev)
{
struct resource *r;
struct device *dev = &pdev->dev;
- struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
+ struct bcm63xx_spi_pdata *pdata = dev_get_platdata(&pdev->dev);
int irq;
struct spi_master *master;
struct clk *clk;