aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/ti/davinci_mdio.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-08-30 14:06:02 +0900
committerDavid S. Miller <davem@davemloft.net>2013-08-30 17:43:38 -0400
commit894cdbb0a40388fedde12ec893f6e900f6162ccf (patch)
treead2161cd20530da300be4ddb9420380a5abc5a04 /drivers/net/ethernet/ti/davinci_mdio.c
parentnet: davinci_emac: use dev_get_platdata() (diff)
downloadlinux-dev-894cdbb0a40388fedde12ec893f6e900f6162ccf.tar.xz
linux-dev-894cdbb0a40388fedde12ec893f6e900f6162ccf.zip
net: davinci_mdio: use dev_get_platdata()
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> Acked-by: Mugunthan V N <mugunthanvnm@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti/davinci_mdio.c')
-rw-r--r--drivers/net/ethernet/ti/davinci_mdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/davinci_mdio.c b/drivers/net/ethernet/ti/davinci_mdio.c
index 7f8514384863..4ec92659a100 100644
--- a/drivers/net/ethernet/ti/davinci_mdio.c
+++ b/drivers/net/ethernet/ti/davinci_mdio.c
@@ -314,7 +314,7 @@ static int davinci_mdio_probe_dt(struct mdio_platform_data *data,
static int davinci_mdio_probe(struct platform_device *pdev)
{
- struct mdio_platform_data *pdata = pdev->dev.platform_data;
+ struct mdio_platform_data *pdata = dev_get_platdata(&pdev->dev);
struct device *dev = &pdev->dev;
struct davinci_mdio_data *data;
struct resource *res;