Commit 37a5b3d5 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

net/cadence: remove __dev* attributes

CONFIG_HOTPLUG is going away as an option.  As result the __dev*
markings will be going away.

Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 093d369d
...@@ -456,7 +456,7 @@ static int __init at91ether_probe(struct platform_device *pdev) ...@@ -456,7 +456,7 @@ static int __init at91ether_probe(struct platform_device *pdev)
return res; return res;
} }
static int __devexit at91ether_remove(struct platform_device *pdev) static int at91ether_remove(struct platform_device *pdev)
{ {
struct net_device *dev = platform_get_drvdata(pdev); struct net_device *dev = platform_get_drvdata(pdev);
struct macb *lp = netdev_priv(dev); struct macb *lp = netdev_priv(dev);
...@@ -509,7 +509,7 @@ static int at91ether_resume(struct platform_device *pdev) ...@@ -509,7 +509,7 @@ static int at91ether_resume(struct platform_device *pdev)
#endif #endif
static struct platform_driver at91ether_driver = { static struct platform_driver at91ether_driver = {
.remove = __devexit_p(at91ether_remove), .remove = at91ether_remove,
.suspend = at91ether_suspend, .suspend = at91ether_suspend,
.resume = at91ether_resume, .resume = at91ether_resume,
.driver = { .driver = {
......
...@@ -1470,7 +1470,7 @@ static const struct of_device_id macb_dt_ids[] = { ...@@ -1470,7 +1470,7 @@ static const struct of_device_id macb_dt_ids[] = {
MODULE_DEVICE_TABLE(of, macb_dt_ids); MODULE_DEVICE_TABLE(of, macb_dt_ids);
static int __devinit macb_get_phy_mode_dt(struct platform_device *pdev) static int macb_get_phy_mode_dt(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
...@@ -1480,7 +1480,7 @@ static int __devinit macb_get_phy_mode_dt(struct platform_device *pdev) ...@@ -1480,7 +1480,7 @@ static int __devinit macb_get_phy_mode_dt(struct platform_device *pdev)
return -ENODEV; return -ENODEV;
} }
static int __devinit macb_get_hwaddr_dt(struct macb *bp) static int macb_get_hwaddr_dt(struct macb *bp)
{ {
struct device_node *np = bp->pdev->dev.of_node; struct device_node *np = bp->pdev->dev.of_node;
if (np) { if (np) {
...@@ -1494,11 +1494,11 @@ static int __devinit macb_get_hwaddr_dt(struct macb *bp) ...@@ -1494,11 +1494,11 @@ static int __devinit macb_get_hwaddr_dt(struct macb *bp)
return -ENODEV; return -ENODEV;
} }
#else #else
static int __devinit macb_get_phy_mode_dt(struct platform_device *pdev) static int macb_get_phy_mode_dt(struct platform_device *pdev)
{ {
return -ENODEV; return -ENODEV;
} }
static int __devinit macb_get_hwaddr_dt(struct macb *bp) static int macb_get_hwaddr_dt(struct macb *bp)
{ {
return -ENODEV; return -ENODEV;
} }
......
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