diff options
Diffstat (limited to 'drivers/net/epic100.c')
-rw-r--r-- | drivers/net/epic100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/epic100.c b/drivers/net/epic100.c index ba2565ee0439..3a6a83d3ee1c 100644 --- a/drivers/net/epic100.c +++ b/drivers/net/epic100.c | |||
@@ -297,7 +297,7 @@ static void epic_init_ring(struct net_device *dev); | |||
297 | static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev); | 297 | static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev); |
298 | static int epic_rx(struct net_device *dev, int budget); | 298 | static int epic_rx(struct net_device *dev, int budget); |
299 | static int epic_poll(struct net_device *dev, int *budget); | 299 | static int epic_poll(struct net_device *dev, int *budget); |
300 | static irqreturn_t epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs); | 300 | static irqreturn_t epic_interrupt(int irq, void *dev_instance); |
301 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 301 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
302 | static const struct ethtool_ops netdev_ethtool_ops; | 302 | static const struct ethtool_ops netdev_ethtool_ops; |
303 | static int epic_close(struct net_device *dev); | 303 | static int epic_close(struct net_device *dev); |
@@ -1081,7 +1081,7 @@ static void epic_tx(struct net_device *dev, struct epic_private *ep) | |||
1081 | 1081 | ||
1082 | /* The interrupt handler does all of the Rx thread work and cleans up | 1082 | /* The interrupt handler does all of the Rx thread work and cleans up |
1083 | after the Tx thread. */ | 1083 | after the Tx thread. */ |
1084 | static irqreturn_t epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs) | 1084 | static irqreturn_t epic_interrupt(int irq, void *dev_instance) |
1085 | { | 1085 | { |
1086 | struct net_device *dev = dev_instance; | 1086 | struct net_device *dev = dev_instance; |
1087 | struct epic_private *ep = dev->priv; | 1087 | struct epic_private *ep = dev->priv; |