Browse Source

spi: rspi: Use dev_get_platdata() instead of raw dev.platform_data access

Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Geert Uytterhoeven 11 years ago
parent
commit
fc671a900b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/spi/spi-rspi.c

+ 1 - 1
drivers/spi/spi-rspi.c

@@ -904,7 +904,7 @@ static int rspi_probe(struct platform_device *pdev)
 	struct rspi_data *rspi;
 	int ret, irq;
 	char clk_name[16];
-	struct rspi_plat_data *rspi_pd = pdev->dev.platform_data;
+	struct rspi_plat_data *rspi_pd = dev_get_platdata(&pdev->dev);
 	const struct spi_ops *ops;
 	const struct platform_device_id *id_entry = pdev->id_entry;