diff options
Diffstat (limited to 'drivers/net/eepro.c')
-rw-r--r-- | drivers/net/eepro.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/net/eepro.c b/drivers/net/eepro.c index aae454aaa1c6..fd6e97891e73 100644 --- a/drivers/net/eepro.c +++ b/drivers/net/eepro.c | |||
@@ -1198,17 +1198,11 @@ static int eepro_send_packet(struct sk_buff *skb, struct net_device *dev) | |||
1198 | static irqreturn_t | 1198 | static irqreturn_t |
1199 | eepro_interrupt(int irq, void *dev_id) | 1199 | eepro_interrupt(int irq, void *dev_id) |
1200 | { | 1200 | { |
1201 | struct net_device *dev = (struct net_device *)dev_id; | 1201 | struct net_device *dev = dev_id; |
1202 | /* (struct net_device *)(irq2dev_map[irq]);*/ | ||
1203 | struct eepro_local *lp; | 1202 | struct eepro_local *lp; |
1204 | int ioaddr, status, boguscount = 20; | 1203 | int ioaddr, status, boguscount = 20; |
1205 | int handled = 0; | 1204 | int handled = 0; |
1206 | 1205 | ||
1207 | if (dev == NULL) { | ||
1208 | printk (KERN_ERR "eepro_interrupt(): irq %d for unknown device.\\n", irq); | ||
1209 | return IRQ_NONE; | ||
1210 | } | ||
1211 | |||
1212 | lp = netdev_priv(dev); | 1206 | lp = netdev_priv(dev); |
1213 | 1207 | ||
1214 | spin_lock(&lp->lock); | 1208 | spin_lock(&lp->lock); |