diff options
Diffstat (limited to 'drivers/net/pci-skeleton.c')
-rw-r--r-- | drivers/net/pci-skeleton.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/pci-skeleton.c b/drivers/net/pci-skeleton.c index 2687e747657d..00ca0fdb837b 100644 --- a/drivers/net/pci-skeleton.c +++ b/drivers/net/pci-skeleton.c | |||
@@ -502,8 +502,7 @@ static void netdrv_tx_timeout (struct net_device *dev); | |||
502 | static void netdrv_init_ring (struct net_device *dev); | 502 | static void netdrv_init_ring (struct net_device *dev); |
503 | static int netdrv_start_xmit (struct sk_buff *skb, | 503 | static int netdrv_start_xmit (struct sk_buff *skb, |
504 | struct net_device *dev); | 504 | struct net_device *dev); |
505 | static irqreturn_t netdrv_interrupt (int irq, void *dev_instance, | 505 | static irqreturn_t netdrv_interrupt (int irq, void *dev_instance); |
506 | struct pt_regs *regs); | ||
507 | static int netdrv_close (struct net_device *dev); | 506 | static int netdrv_close (struct net_device *dev); |
508 | static int netdrv_ioctl (struct net_device *dev, struct ifreq *rq, int cmd); | 507 | static int netdrv_ioctl (struct net_device *dev, struct ifreq *rq, int cmd); |
509 | static struct net_device_stats *netdrv_get_stats (struct net_device *dev); | 508 | static struct net_device_stats *netdrv_get_stats (struct net_device *dev); |
@@ -1654,8 +1653,7 @@ static void netdrv_weird_interrupt (struct net_device *dev, | |||
1654 | 1653 | ||
1655 | /* The interrupt handler does all of the Rx thread work and cleans up | 1654 | /* The interrupt handler does all of the Rx thread work and cleans up |
1656 | after the Tx thread. */ | 1655 | after the Tx thread. */ |
1657 | static irqreturn_t netdrv_interrupt (int irq, void *dev_instance, | 1656 | static irqreturn_t netdrv_interrupt (int irq, void *dev_instance) |
1658 | struct pt_regs *regs) | ||
1659 | { | 1657 | { |
1660 | struct net_device *dev = (struct net_device *) dev_instance; | 1658 | struct net_device *dev = (struct net_device *) dev_instance; |
1661 | struct netdrv_private *tp = dev->priv; | 1659 | struct netdrv_private *tp = dev->priv; |