aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/nxp
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-03 09:23:21 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-12-03 14:16:44 -0500
commit21524526b3ec66329cba682f11fdba77c8b0e698 (patch)
tree243e7ba1ae20d613d39147e84f496aa0e3f2dc94 /drivers/net/ethernet/nxp
parentd05919a148154d6814cf98f515d477bf676e957e (diff)
lpc_eth: 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: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net/ethernet/nxp')
-rw-r--r--drivers/net/ethernet/nxp/lpc_eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/nxp/lpc_eth.c b/drivers/net/ethernet/nxp/lpc_eth.c
index db6e1019be18..3466ca1e8f6c 100644
--- a/drivers/net/ethernet/nxp/lpc_eth.c
+++ b/drivers/net/ethernet/nxp/lpc_eth.c
@@ -1595,7 +1595,7 @@ MODULE_DEVICE_TABLE(of, lpc_eth_match);
1595 1595
1596static struct platform_driver lpc_eth_driver = { 1596static struct platform_driver lpc_eth_driver = {
1597 .probe = lpc_eth_drv_probe, 1597 .probe = lpc_eth_drv_probe,
1598 .remove = __devexit_p(lpc_eth_drv_remove), 1598 .remove = lpc_eth_drv_remove,
1599#ifdef CONFIG_PM 1599#ifdef CONFIG_PM
1600 .suspend = lpc_eth_drv_suspend, 1600 .suspend = lpc_eth_drv_suspend,
1601 .resume = lpc_eth_drv_resume, 1601 .resume = lpc_eth_drv_resume,