]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
can: flexcan: use platform_set_drvdata()
authorLibo Chen <libo.chen@huawei.com>
Wed, 21 Aug 2013 10:15:08 +0000 (18:15 +0800)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 22 Aug 2013 07:40:20 +0000 (09:40 +0200)
Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_set_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.

Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/flexcan.c

index c48174ed49ccdbd1d4da15e356036d0bc6ca6c9f..71c677e651d7cbead0f673f53a93e89514e74eb3 100644 (file)
@@ -1083,7 +1083,7 @@ static int flexcan_probe(struct platform_device *pdev)
 
        netif_napi_add(dev, &priv->napi, flexcan_poll, FLEXCAN_NAPI_WEIGHT);
 
-       dev_set_drvdata(&pdev->dev, dev);
+       platform_set_drvdata(pdev, dev);
        SET_NETDEV_DEV(dev, &pdev->dev);
 
        err = register_flexcandev(dev);