diff options
Diffstat (limited to 'drivers/net/via-velocity.c')
-rw-r--r-- | drivers/net/via-velocity.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 7d8808ce541f..74f894795a1b 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
@@ -236,7 +236,7 @@ static void velocity_print_info(struct velocity_info *vptr); | |||
236 | static int velocity_open(struct net_device *dev); | 236 | static int velocity_open(struct net_device *dev); |
237 | static int velocity_change_mtu(struct net_device *dev, int mtu); | 237 | static int velocity_change_mtu(struct net_device *dev, int mtu); |
238 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); | 238 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); |
239 | static int velocity_intr(int irq, void *dev_instance, struct pt_regs *regs); | 239 | static int velocity_intr(int irq, void *dev_instance); |
240 | static void velocity_set_multi(struct net_device *dev); | 240 | static void velocity_set_multi(struct net_device *dev); |
241 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); | 241 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); |
242 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 242 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
@@ -2036,7 +2036,6 @@ static int velocity_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2036 | * velocity_intr - interrupt callback | 2036 | * velocity_intr - interrupt callback |
2037 | * @irq: interrupt number | 2037 | * @irq: interrupt number |
2038 | * @dev_instance: interrupting device | 2038 | * @dev_instance: interrupting device |
2039 | * @pt_regs: CPU register state at interrupt | ||
2040 | * | 2039 | * |
2041 | * Called whenever an interrupt is generated by the velocity | 2040 | * Called whenever an interrupt is generated by the velocity |
2042 | * adapter IRQ line. We may not be the source of the interrupt | 2041 | * adapter IRQ line. We may not be the source of the interrupt |
@@ -2044,7 +2043,7 @@ static int velocity_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2044 | * efficiently as possible. | 2043 | * efficiently as possible. |
2045 | */ | 2044 | */ |
2046 | 2045 | ||
2047 | static int velocity_intr(int irq, void *dev_instance, struct pt_regs *regs) | 2046 | static int velocity_intr(int irq, void *dev_instance) |
2048 | { | 2047 | { |
2049 | struct net_device *dev = dev_instance; | 2048 | struct net_device *dev = dev_instance; |
2050 | struct velocity_info *vptr = netdev_priv(dev); | 2049 | struct velocity_info *vptr = netdev_priv(dev); |