diff options
Diffstat (limited to 'drivers/net/pcmcia/3c574_cs.c')
-rw-r--r-- | drivers/net/pcmcia/3c574_cs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/pcmcia/3c574_cs.c b/drivers/net/pcmcia/3c574_cs.c index 2418cdb9d317..046009928526 100644 --- a/drivers/net/pcmcia/3c574_cs.c +++ b/drivers/net/pcmcia/3c574_cs.c | |||
@@ -238,7 +238,7 @@ static void tc574_reset(struct net_device *dev); | |||
238 | static void media_check(unsigned long arg); | 238 | static void media_check(unsigned long arg); |
239 | static int el3_open(struct net_device *dev); | 239 | static int el3_open(struct net_device *dev); |
240 | static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev); | 240 | static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev); |
241 | static irqreturn_t el3_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 241 | static irqreturn_t el3_interrupt(int irq, void *dev_id); |
242 | static void update_stats(struct net_device *dev); | 242 | static void update_stats(struct net_device *dev); |
243 | static struct net_device_stats *el3_get_stats(struct net_device *dev); | 243 | static struct net_device_stats *el3_get_stats(struct net_device *dev); |
244 | static int el3_rx(struct net_device *dev, int worklimit); | 244 | static int el3_rx(struct net_device *dev, int worklimit); |
@@ -817,7 +817,7 @@ static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
817 | } | 817 | } |
818 | 818 | ||
819 | /* The EL3 interrupt handler. */ | 819 | /* The EL3 interrupt handler. */ |
820 | static irqreturn_t el3_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 820 | static irqreturn_t el3_interrupt(int irq, void *dev_id) |
821 | { | 821 | { |
822 | struct net_device *dev = (struct net_device *) dev_id; | 822 | struct net_device *dev = (struct net_device *) dev_id; |
823 | struct el3_private *lp = netdev_priv(dev); | 823 | struct el3_private *lp = netdev_priv(dev); |
@@ -927,7 +927,7 @@ static void media_check(unsigned long arg) | |||
927 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { | 927 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { |
928 | if (!lp->fast_poll) | 928 | if (!lp->fast_poll) |
929 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); | 929 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); |
930 | el3_interrupt(dev->irq, lp, NULL); | 930 | el3_interrupt(dev->irq, lp); |
931 | lp->fast_poll = HZ; | 931 | lp->fast_poll = HZ; |
932 | } | 932 | } |
933 | if (lp->fast_poll) { | 933 | if (lp->fast_poll) { |