diff options
Diffstat (limited to 'drivers/net/3c515.c')
-rw-r--r-- | drivers/net/3c515.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/3c515.c b/drivers/net/3c515.c index 1e898b1c8068..569e269f282e 100644 --- a/drivers/net/3c515.c +++ b/drivers/net/3c515.c | |||
@@ -65,7 +65,6 @@ static int max_interrupt_work = 20; | |||
65 | #include <linux/errno.h> | 65 | #include <linux/errno.h> |
66 | #include <linux/in.h> | 66 | #include <linux/in.h> |
67 | #include <linux/ioport.h> | 67 | #include <linux/ioport.h> |
68 | #include <linux/slab.h> | ||
69 | #include <linux/skbuff.h> | 68 | #include <linux/skbuff.h> |
70 | #include <linux/etherdevice.h> | 69 | #include <linux/etherdevice.h> |
71 | #include <linux/interrupt.h> | 70 | #include <linux/interrupt.h> |
@@ -993,7 +992,7 @@ static void corkscrew_timeout(struct net_device *dev) | |||
993 | if (!(inw(ioaddr + EL3_STATUS) & CmdInProgress)) | 992 | if (!(inw(ioaddr + EL3_STATUS) & CmdInProgress)) |
994 | break; | 993 | break; |
995 | outw(TxEnable, ioaddr + EL3_CMD); | 994 | outw(TxEnable, ioaddr + EL3_CMD); |
996 | dev->trans_start = jiffies; | 995 | dev->trans_start = jiffies; /* prevent tx timeout */ |
997 | dev->stats.tx_errors++; | 996 | dev->stats.tx_errors++; |
998 | dev->stats.tx_dropped++; | 997 | dev->stats.tx_dropped++; |
999 | netif_wake_queue(dev); | 998 | netif_wake_queue(dev); |
@@ -1056,7 +1055,6 @@ static netdev_tx_t corkscrew_start_xmit(struct sk_buff *skb, | |||
1056 | prev_entry->status &= ~0x80000000; | 1055 | prev_entry->status &= ~0x80000000; |
1057 | netif_wake_queue(dev); | 1056 | netif_wake_queue(dev); |
1058 | } | 1057 | } |
1059 | dev->trans_start = jiffies; | ||
1060 | return NETDEV_TX_OK; | 1058 | return NETDEV_TX_OK; |
1061 | } | 1059 | } |
1062 | /* Put out the doubleword header... */ | 1060 | /* Put out the doubleword header... */ |
@@ -1092,7 +1090,6 @@ static netdev_tx_t corkscrew_start_xmit(struct sk_buff *skb, | |||
1092 | outw(SetTxThreshold + (1536 >> 2), ioaddr + EL3_CMD); | 1090 | outw(SetTxThreshold + (1536 >> 2), ioaddr + EL3_CMD); |
1093 | #endif /* bus master */ | 1091 | #endif /* bus master */ |
1094 | 1092 | ||
1095 | dev->trans_start = jiffies; | ||
1096 | 1093 | ||
1097 | /* Clear the Tx status stack. */ | 1094 | /* Clear the Tx status stack. */ |
1098 | { | 1095 | { |