]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: fsl_pq_mdio: use platform_{get,set}_drvdata()
authorLibo Chen <clbchenlibo.chen@huawei.com>
Mon, 19 Aug 2013 11:58:40 +0000 (19:58 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 21 Aug 2013 00:18:02 +0000 (17:18 -0700)
Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,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: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/fsl_pq_mdio.c

index c93a05654b46125b6eeda59cf6e0bbfc83c5f9ef..b7dcd41639516b0486dcaa53b9e8c34b7184d2aa 100644 (file)
@@ -409,7 +409,7 @@ static int fsl_pq_mdio_probe(struct platform_device *pdev)
        priv->regs = priv->map + data->mii_offset;
 
        new_bus->parent = &pdev->dev;
-       dev_set_drvdata(&pdev->dev, new_bus);
+       platform_set_drvdata(pdev, new_bus);
 
        if (data->get_tbipa) {
                for_each_child_of_node(np, tbi) {