diff options
Diffstat (limited to 'drivers/net/eexpress.c')
-rw-r--r-- | drivers/net/eexpress.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/eexpress.c b/drivers/net/eexpress.c index d1b6368faacd..592de8f1668a 100644 --- a/drivers/net/eexpress.c +++ b/drivers/net/eexpress.c | |||
@@ -246,7 +246,8 @@ static char mca_irqmap[] = { 12, 9, 3, 4, 5, 10, 11, 15 }; | |||
246 | static int eexp_open(struct net_device *dev); | 246 | static int eexp_open(struct net_device *dev); |
247 | static int eexp_close(struct net_device *dev); | 247 | static int eexp_close(struct net_device *dev); |
248 | static void eexp_timeout(struct net_device *dev); | 248 | static void eexp_timeout(struct net_device *dev); |
249 | static int eexp_xmit(struct sk_buff *buf, struct net_device *dev); | 249 | static netdev_tx_t eexp_xmit(struct sk_buff *buf, |
250 | struct net_device *dev); | ||
250 | 251 | ||
251 | static irqreturn_t eexp_irq(int irq, void *dev_addr); | 252 | static irqreturn_t eexp_irq(int irq, void *dev_addr); |
252 | static void eexp_set_multicast(struct net_device *dev); | 253 | static void eexp_set_multicast(struct net_device *dev); |
@@ -650,7 +651,7 @@ static void eexp_timeout(struct net_device *dev) | |||
650 | * Called to transmit a packet, or to allow us to right ourselves | 651 | * Called to transmit a packet, or to allow us to right ourselves |
651 | * if the kernel thinks we've died. | 652 | * if the kernel thinks we've died. |
652 | */ | 653 | */ |
653 | static int eexp_xmit(struct sk_buff *buf, struct net_device *dev) | 654 | static netdev_tx_t eexp_xmit(struct sk_buff *buf, struct net_device *dev) |
654 | { | 655 | { |
655 | short length = buf->len; | 656 | short length = buf->len; |
656 | #ifdef CONFIG_SMP | 657 | #ifdef CONFIG_SMP |