1
0
Fork 0

drivers/net/eepro: kill dead code

The irq2dev_map has not been used for a long time.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
hifive-unleashed-5.1
Jeff Garzik 2006-10-06 15:03:04 -04:00
parent c7bec5aba5
commit 8f4aff6cb1
1 changed files with 0 additions and 14 deletions

View File

@ -994,16 +994,6 @@ static int eepro_open(struct net_device *dev)
return -EAGAIN;
}
#ifdef irq2dev_map
if (((irq2dev_map[dev->irq] != 0)
|| (irq2dev_map[dev->irq] = dev) == 0) &&
(irq2dev_map[dev->irq]!=dev)) {
/* printk("%s: IRQ map wrong\n", dev->name); */
free_irq(dev->irq, dev);
return -EAGAIN;
}
#endif
/* Initialize the 82595. */
eepro_sw2bank2(ioaddr); /* be CAREFUL, BANK 2 now */
@ -1282,10 +1272,6 @@ static int eepro_close(struct net_device *dev)
/* release the interrupt */
free_irq(dev->irq, dev);
#ifdef irq2dev_map
irq2dev_map[dev->irq] = 0;
#endif
/* Update the statistics here. What statistics? */
return 0;