forked from Minki/linux
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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
87f673e9ca
commit
980f3beeb6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user