Commit 33897cc8 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

net/freescale: 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>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 37a5b3d5
...@@ -1484,7 +1484,7 @@ static int fec_enet_init(struct net_device *ndev) ...@@ -1484,7 +1484,7 @@ static int fec_enet_init(struct net_device *ndev)
} }
#ifdef CONFIG_OF #ifdef CONFIG_OF
static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev) static int fec_get_phy_mode_dt(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
...@@ -1494,7 +1494,7 @@ static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev) ...@@ -1494,7 +1494,7 @@ static int __devinit fec_get_phy_mode_dt(struct platform_device *pdev)
return -ENODEV; return -ENODEV;
} }
static void __devinit fec_reset_phy(struct platform_device *pdev) static void fec_reset_phy(struct platform_device *pdev)
{ {
int err, phy_reset; int err, phy_reset;
int msec = 1; int msec = 1;
...@@ -1533,7 +1533,7 @@ static inline void fec_reset_phy(struct platform_device *pdev) ...@@ -1533,7 +1533,7 @@ static inline void fec_reset_phy(struct platform_device *pdev)
} }
#endif /* CONFIG_OF */ #endif /* CONFIG_OF */
static int __devinit static int
fec_probe(struct platform_device *pdev) fec_probe(struct platform_device *pdev)
{ {
struct fec_enet_private *fep; struct fec_enet_private *fep;
...@@ -1701,7 +1701,7 @@ fec_probe(struct platform_device *pdev) ...@@ -1701,7 +1701,7 @@ fec_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __devexit static int
fec_drv_remove(struct platform_device *pdev) fec_drv_remove(struct platform_device *pdev)
{ {
struct net_device *ndev = platform_get_drvdata(pdev); struct net_device *ndev = platform_get_drvdata(pdev);
...@@ -1790,7 +1790,7 @@ static struct platform_driver fec_driver = { ...@@ -1790,7 +1790,7 @@ static struct platform_driver fec_driver = {
}, },
.id_table = fec_devtype, .id_table = fec_devtype,
.probe = fec_probe, .probe = fec_probe,
.remove = __devexit_p(fec_drv_remove), .remove = fec_drv_remove,
}; };
module_platform_driver(fec_driver); module_platform_driver(fec_driver);
......
...@@ -845,7 +845,7 @@ static const struct net_device_ops mpc52xx_fec_netdev_ops = { ...@@ -845,7 +845,7 @@ static const struct net_device_ops mpc52xx_fec_netdev_ops = {
/* OF Driver */ /* OF Driver */
/* ======================================================================== */ /* ======================================================================== */
static int __devinit mpc52xx_fec_probe(struct platform_device *op) static int mpc52xx_fec_probe(struct platform_device *op)
{ {
int rv; int rv;
struct net_device *ndev; struct net_device *ndev;
......
...@@ -189,7 +189,7 @@ static int xgmac_mdio_reset(struct mii_bus *bus) ...@@ -189,7 +189,7 @@ static int xgmac_mdio_reset(struct mii_bus *bus)
return ret; return ret;
} }
static int __devinit xgmac_mdio_probe(struct platform_device *pdev) static int xgmac_mdio_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct mii_bus *bus; struct mii_bus *bus;
...@@ -240,7 +240,7 @@ static int __devinit xgmac_mdio_probe(struct platform_device *pdev) ...@@ -240,7 +240,7 @@ static int __devinit xgmac_mdio_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __devexit xgmac_mdio_remove(struct platform_device *pdev) static int xgmac_mdio_remove(struct platform_device *pdev)
{ {
struct mii_bus *bus = dev_get_drvdata(&pdev->dev); struct mii_bus *bus = dev_get_drvdata(&pdev->dev);
......
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