]> Pileus Git - ~andy/linux/commitdiff
can: at91_can: use platform_set_drvdata()
authorLibo Chen <libo.chen@huawei.com>
Wed, 21 Aug 2013 10:15:03 +0000 (18:15 +0800)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 22 Aug 2013 07:40:19 +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/at91_can.c

index dbbe97ae121e50a97610ed35a84e793d79fbf900..3b1ff6148702beb3818fbae7da2b0206f7d1c7f4 100644 (file)
@@ -1355,7 +1355,7 @@ static int at91_can_probe(struct platform_device *pdev)
        if (at91_is_sam9263(priv))
                dev->sysfs_groups[0] = &at91_sysfs_attr_group;
 
-       dev_set_drvdata(&pdev->dev, dev);
+       platform_set_drvdata(pdev, dev);
        SET_NETDEV_DEV(dev, &pdev->dev);
 
        err = register_candev(dev);