Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 980f3bee authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Grant Likely
Browse files

spi-imx: don't access struct device directly but use dev_get_platdata



Also there is no casting needed to assign a void pointer.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 87f673e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -492,7 +492,7 @@ static int __init spi_imx_probe(struct platform_device *pdev)
	struct resource *res;
	int i, ret;

	mxc_platform_info = (struct spi_imx_master *)pdev->dev.platform_data;
	mxc_platform_info = dev_get_platdata(&pdev->dev);
	if (!mxc_platform_info) {
		dev_err(&pdev->dev, "can't get the platform data\n");
		return -EINVAL;