diff options
Diffstat (limited to 'drivers/net/tulip/dmfe.c')
-rw-r--r-- | drivers/net/tulip/dmfe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/tulip/dmfe.c b/drivers/net/tulip/dmfe.c index ccf2c225f084..4dd8a0bae860 100644 --- a/drivers/net/tulip/dmfe.c +++ b/drivers/net/tulip/dmfe.c | |||
@@ -300,7 +300,7 @@ static struct net_device_stats * dmfe_get_stats(struct DEVICE *); | |||
300 | static void dmfe_set_filter_mode(struct DEVICE *); | 300 | static void dmfe_set_filter_mode(struct DEVICE *); |
301 | static const struct ethtool_ops netdev_ethtool_ops; | 301 | static const struct ethtool_ops netdev_ethtool_ops; |
302 | static u16 read_srom_word(long ,int); | 302 | static u16 read_srom_word(long ,int); |
303 | static irqreturn_t dmfe_interrupt(int , void *, struct pt_regs *); | 303 | static irqreturn_t dmfe_interrupt(int , void *); |
304 | #ifdef CONFIG_NET_POLL_CONTROLLER | 304 | #ifdef CONFIG_NET_POLL_CONTROLLER |
305 | static void poll_dmfe (struct net_device *dev); | 305 | static void poll_dmfe (struct net_device *dev); |
306 | #endif | 306 | #endif |
@@ -735,7 +735,7 @@ static int dmfe_stop(struct DEVICE *dev) | |||
735 | * receive the packet to upper layer, free the transmitted packet | 735 | * receive the packet to upper layer, free the transmitted packet |
736 | */ | 736 | */ |
737 | 737 | ||
738 | static irqreturn_t dmfe_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 738 | static irqreturn_t dmfe_interrupt(int irq, void *dev_id) |
739 | { | 739 | { |
740 | struct DEVICE *dev = dev_id; | 740 | struct DEVICE *dev = dev_id; |
741 | struct dmfe_board_info *db = netdev_priv(dev); | 741 | struct dmfe_board_info *db = netdev_priv(dev); |
@@ -806,7 +806,7 @@ static void poll_dmfe (struct net_device *dev) | |||
806 | /* disable_irq here is not very nice, but with the lockless | 806 | /* disable_irq here is not very nice, but with the lockless |
807 | interrupt handler we have no other choice. */ | 807 | interrupt handler we have no other choice. */ |
808 | disable_irq(dev->irq); | 808 | disable_irq(dev->irq); |
809 | dmfe_interrupt (dev->irq, dev, NULL); | 809 | dmfe_interrupt (dev->irq, dev); |
810 | enable_irq(dev->irq); | 810 | enable_irq(dev->irq); |
811 | } | 811 | } |
812 | #endif | 812 | #endif |