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>
This commit is contained in:
Jingoo Han 2013-07-30 16:58:59 +09:00 committed by Mark Brown
parent a4f2ca3e62
commit 8074cf063e
29 changed files with 40 additions and 38 deletions

View file

@ -349,7 +349,7 @@ static int xilinx_spi_probe(struct platform_device *pdev)
u32 tmp;
u8 i;
pdata = pdev->dev.platform_data;
pdata = dev_get_platdata(&pdev->dev);
if (pdata) {
num_cs = pdata->num_chipselect;
bits_per_word = pdata->bits_per_word;