aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/i825xx/lasi_82596.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-03 09:22:47 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-12-03 14:16:12 -0500
commit58b10698d2d60b0b0c3bddd72038af14e62f92bc (patch)
tree6a860e5fb24c348eb831b6656bf1074e0f12dfc8 /drivers/net/ethernet/i825xx/lasi_82596.c
parent663c2a69e943b391b3cea25c616e339c5d5d4fab (diff)
i825xx: 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/i825xx/lasi_82596.c')
-rw-r--r--drivers/net/ethernet/i825xx/lasi_82596.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/i825xx/lasi_82596.c b/drivers/net/ethernet/i825xx/lasi_82596.c
index 6eba352c52e0..f42f1b707733 100644
--- a/drivers/net/ethernet/i825xx/lasi_82596.c
+++ b/drivers/net/ethernet/i825xx/lasi_82596.c
@@ -150,7 +150,7 @@ static void mpu_port(struct net_device *dev, int c, dma_addr_t x)
150 150
151#define LAN_PROM_ADDR 0xF0810000 151#define LAN_PROM_ADDR 0xF0810000
152 152
153static int __devinit 153static int
154lan_init_chip(struct parisc_device *dev) 154lan_init_chip(struct parisc_device *dev)
155{ 155{
156 struct net_device *netdevice; 156 struct net_device *netdevice;
@@ -195,7 +195,7 @@ lan_init_chip(struct parisc_device *dev)
195 return retval; 195 return retval;
196} 196}
197 197
198static int __devexit lan_remove_chip (struct parisc_device *pdev) 198static int lan_remove_chip(struct parisc_device *pdev)
199{ 199{
200 struct net_device *dev = parisc_get_drvdata(pdev); 200 struct net_device *dev = parisc_get_drvdata(pdev);
201 struct i596_private *lp = netdev_priv(dev); 201 struct i596_private *lp = netdev_priv(dev);
@@ -219,10 +219,10 @@ static struct parisc_driver lan_driver = {
219 .name = "lasi_82596", 219 .name = "lasi_82596",
220 .id_table = lan_tbl, 220 .id_table = lan_tbl,
221 .probe = lan_init_chip, 221 .probe = lan_init_chip,
222 .remove = __devexit_p(lan_remove_chip), 222 .remove = lan_remove_chip,
223}; 223};
224 224
225static int __devinit lasi_82596_init(void) 225static int lasi_82596_init(void)
226{ 226{
227 printk(KERN_INFO LASI_82596_DRIVER_VERSION "\n"); 227 printk(KERN_INFO LASI_82596_DRIVER_VERSION "\n");
228 return register_parisc_driver(&lan_driver); 228 return register_parisc_driver(&lan_driver);