]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: ixp4xx_eth: use dev_get_platdata()
authorJingoo Han <jg1.han@samsung.com>
Fri, 30 Aug 2013 05:08:22 +0000 (14:08 +0900)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Aug 2013 21:43:39 +0000 (17:43 -0400)
Use the wrapper function for retrieving the platform data instead of
accessing dev->platform_data directly. This is a cosmetic change
to make the code simpler and enhance the readability.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/xscale/ixp4xx_eth.c

index 3d689fcb7917bd62e193fc1c8414d2a9075e0be5..e78802e75ea6cb358d6e3bec8d3a25efcffc66d4 100644 (file)
@@ -1384,7 +1384,7 @@ static int eth_init_one(struct platform_device *pdev)
 {
        struct port *port;
        struct net_device *dev;
-       struct eth_plat_info *plat = pdev->dev.platform_data;
+       struct eth_plat_info *plat = dev_get_platdata(&pdev->dev);
        u32 regs_phys;
        char phy_id[MII_BUS_ID_SIZE + 3];
        int err;