Commit bc353832 authored by Jingoo Han's avatar Jingoo Han Committed by David S. Miller

net: emac: use platform_{get,set}_drvdata()

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.
This is a purely cosmetic change.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1372a298
...@@ -2312,7 +2312,7 @@ static int emac_check_deps(struct emac_instance *dev, ...@@ -2312,7 +2312,7 @@ static int emac_check_deps(struct emac_instance *dev,
if (deps[i].ofdev == NULL) if (deps[i].ofdev == NULL)
continue; continue;
if (deps[i].drvdata == NULL) if (deps[i].drvdata == NULL)
deps[i].drvdata = dev_get_drvdata(&deps[i].ofdev->dev); deps[i].drvdata = platform_get_drvdata(deps[i].ofdev);
if (deps[i].drvdata != NULL) if (deps[i].drvdata != NULL)
there++; there++;
} }
...@@ -2799,9 +2799,9 @@ static int emac_probe(struct platform_device *ofdev) ...@@ -2799,9 +2799,9 @@ static int emac_probe(struct platform_device *ofdev)
/* display more info about what's missing ? */ /* display more info about what's missing ? */
goto err_reg_unmap; goto err_reg_unmap;
} }
dev->mal = dev_get_drvdata(&dev->mal_dev->dev); dev->mal = platform_get_drvdata(dev->mal_dev);
if (dev->mdio_dev != NULL) if (dev->mdio_dev != NULL)
dev->mdio_instance = dev_get_drvdata(&dev->mdio_dev->dev); dev->mdio_instance = platform_get_drvdata(dev->mdio_dev);
/* Register with MAL */ /* Register with MAL */
dev->commac.ops = &emac_commac_ops; dev->commac.ops = &emac_commac_ops;
...@@ -2892,7 +2892,7 @@ static int emac_probe(struct platform_device *ofdev) ...@@ -2892,7 +2892,7 @@ static int emac_probe(struct platform_device *ofdev)
* fully initialized * fully initialized
*/ */
wmb(); wmb();
dev_set_drvdata(&ofdev->dev, dev); platform_set_drvdata(ofdev, dev);
/* There's a new kid in town ! Let's tell everybody */ /* There's a new kid in town ! Let's tell everybody */
wake_up_all(&emac_probe_wait); wake_up_all(&emac_probe_wait);
...@@ -2951,7 +2951,7 @@ static int emac_probe(struct platform_device *ofdev) ...@@ -2951,7 +2951,7 @@ static int emac_probe(struct platform_device *ofdev)
static int emac_remove(struct platform_device *ofdev) static int emac_remove(struct platform_device *ofdev)
{ {
struct emac_instance *dev = dev_get_drvdata(&ofdev->dev); struct emac_instance *dev = platform_get_drvdata(ofdev);
DBG(dev, "remove" NL); DBG(dev, "remove" NL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment