diff options
Diffstat (limited to 'drivers/net/au1000_eth.c')
-rw-r--r-- | drivers/net/au1000_eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c index ac33b1b9cf4a..4873dc610d22 100644 --- a/drivers/net/au1000_eth.c +++ b/drivers/net/au1000_eth.c | |||
@@ -89,7 +89,7 @@ static int au1000_open(struct net_device *); | |||
89 | static int au1000_close(struct net_device *); | 89 | static int au1000_close(struct net_device *); |
90 | static int au1000_tx(struct sk_buff *, struct net_device *); | 90 | static int au1000_tx(struct sk_buff *, struct net_device *); |
91 | static int au1000_rx(struct net_device *); | 91 | static int au1000_rx(struct net_device *); |
92 | static irqreturn_t au1000_interrupt(int, void *, struct pt_regs *); | 92 | static irqreturn_t au1000_interrupt(int, void *); |
93 | static void au1000_tx_timeout(struct net_device *); | 93 | static void au1000_tx_timeout(struct net_device *); |
94 | static void set_rx_mode(struct net_device *); | 94 | static void set_rx_mode(struct net_device *); |
95 | static struct net_device_stats *au1000_get_stats(struct net_device *); | 95 | static struct net_device_stats *au1000_get_stats(struct net_device *); |
@@ -1253,7 +1253,7 @@ static int au1000_rx(struct net_device *dev) | |||
1253 | /* | 1253 | /* |
1254 | * Au1000 interrupt service routine. | 1254 | * Au1000 interrupt service routine. |
1255 | */ | 1255 | */ |
1256 | static irqreturn_t au1000_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 1256 | static irqreturn_t au1000_interrupt(int irq, void *dev_id) |
1257 | { | 1257 | { |
1258 | struct net_device *dev = (struct net_device *) dev_id; | 1258 | struct net_device *dev = (struct net_device *) dev_id; |
1259 | 1259 | ||