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-sh-msiof.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-sh-msiof.c')
-rw-r--r-- | drivers/spi/spi-sh-msiof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index 2bc5a6b86300..cbc7f2216c16 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c | |||
@@ -645,7 +645,7 @@ static int sh_msiof_spi_probe(struct platform_device *pdev) | |||
645 | if (pdev->dev.of_node) | 645 | if (pdev->dev.of_node) |
646 | p->info = sh_msiof_spi_parse_dt(&pdev->dev); | 646 | p->info = sh_msiof_spi_parse_dt(&pdev->dev); |
647 | else | 647 | else |
648 | p->info = pdev->dev.platform_data; | 648 | p->info = dev_get_platdata(&pdev->dev); |
649 | 649 | ||
650 | if (!p->info) { | 650 | if (!p->info) { |
651 | dev_err(&pdev->dev, "failed to obtain device info\n"); | 651 | dev_err(&pdev->dev, "failed to obtain device info\n"); |