diff options
Diffstat (limited to 'drivers/net/fealnx.c')
-rw-r--r-- | drivers/net/fealnx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/fealnx.c b/drivers/net/fealnx.c index 191bd429076a..38a13f440530 100644 --- a/drivers/net/fealnx.c +++ b/drivers/net/fealnx.c | |||
@@ -434,7 +434,7 @@ static void reset_timer(unsigned long data); | |||
434 | static void tx_timeout(struct net_device *dev); | 434 | static void tx_timeout(struct net_device *dev); |
435 | static void init_ring(struct net_device *dev); | 435 | static void init_ring(struct net_device *dev); |
436 | static int start_tx(struct sk_buff *skb, struct net_device *dev); | 436 | static int start_tx(struct sk_buff *skb, struct net_device *dev); |
437 | static irqreturn_t intr_handler(int irq, void *dev_instance, struct pt_regs *regs); | 437 | static irqreturn_t intr_handler(int irq, void *dev_instance); |
438 | static int netdev_rx(struct net_device *dev); | 438 | static int netdev_rx(struct net_device *dev); |
439 | static void set_rx_mode(struct net_device *dev); | 439 | static void set_rx_mode(struct net_device *dev); |
440 | static void __set_rx_mode(struct net_device *dev); | 440 | static void __set_rx_mode(struct net_device *dev); |
@@ -1453,7 +1453,7 @@ static void reset_rx_descriptors(struct net_device *dev) | |||
1453 | 1453 | ||
1454 | /* The interrupt handler does all of the Rx thread work and cleans up | 1454 | /* The interrupt handler does all of the Rx thread work and cleans up |
1455 | after the Tx thread. */ | 1455 | after the Tx thread. */ |
1456 | static irqreturn_t intr_handler(int irq, void *dev_instance, struct pt_regs *rgs) | 1456 | static irqreturn_t intr_handler(int irq, void *dev_instance) |
1457 | { | 1457 | { |
1458 | struct net_device *dev = (struct net_device *) dev_instance; | 1458 | struct net_device *dev = (struct net_device *) dev_instance; |
1459 | struct netdev_private *np = netdev_priv(dev); | 1459 | struct netdev_private *np = netdev_priv(dev); |