aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/3c515.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/3c515.c')
-rw-r--r--drivers/net/3c515.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/3c515.c b/drivers/net/3c515.c
index 2e17837be546..3bba835f1a21 100644
--- a/drivers/net/3c515.c
+++ b/drivers/net/3c515.c
@@ -958,7 +958,6 @@ static void corkscrew_timer(unsigned long data)
958 dev->name, media_tbl[dev->if_port].name); 958 dev->name, media_tbl[dev->if_port].name);
959 959
960#endif /* AUTOMEDIA */ 960#endif /* AUTOMEDIA */
961 return;
962} 961}
963 962
964static void corkscrew_timeout(struct net_device *dev) 963static void corkscrew_timeout(struct net_device *dev)
@@ -992,7 +991,7 @@ static void corkscrew_timeout(struct net_device *dev)
992 if (!(inw(ioaddr + EL3_STATUS) & CmdInProgress)) 991 if (!(inw(ioaddr + EL3_STATUS) & CmdInProgress))
993 break; 992 break;
994 outw(TxEnable, ioaddr + EL3_CMD); 993 outw(TxEnable, ioaddr + EL3_CMD);
995 dev->trans_start = jiffies; 994 dev->trans_start = jiffies; /* prevent tx timeout */
996 dev->stats.tx_errors++; 995 dev->stats.tx_errors++;
997 dev->stats.tx_dropped++; 996 dev->stats.tx_dropped++;
998 netif_wake_queue(dev); 997 netif_wake_queue(dev);
@@ -1055,7 +1054,6 @@ static netdev_tx_t corkscrew_start_xmit(struct sk_buff *skb,
1055 prev_entry->status &= ~0x80000000; 1054 prev_entry->status &= ~0x80000000;
1056 netif_wake_queue(dev); 1055 netif_wake_queue(dev);
1057 } 1056 }
1058 dev->trans_start = jiffies;
1059 return NETDEV_TX_OK; 1057 return NETDEV_TX_OK;
1060 } 1058 }
1061 /* Put out the doubleword header... */ 1059 /* Put out the doubleword header... */
@@ -1091,7 +1089,6 @@ static netdev_tx_t corkscrew_start_xmit(struct sk_buff *skb,
1091 outw(SetTxThreshold + (1536 >> 2), ioaddr + EL3_CMD); 1089 outw(SetTxThreshold + (1536 >> 2), ioaddr + EL3_CMD);
1092#endif /* bus master */ 1090#endif /* bus master */
1093 1091
1094 dev->trans_start = jiffies;
1095 1092
1096 /* Clear the Tx status stack. */ 1093 /* Clear the Tx status stack. */
1097 { 1094 {
@@ -1518,7 +1515,6 @@ static void update_stats(int ioaddr, struct net_device *dev)
1518 1515
1519 /* We change back to window 7 (not 1) with the Vortex. */ 1516 /* We change back to window 7 (not 1) with the Vortex. */
1520 EL3WINDOW(7); 1517 EL3WINDOW(7);
1521 return;
1522} 1518}
1523 1519
1524/* This new version of set_rx_mode() supports v1.4 kernels. 1520/* This new version of set_rx_mode() supports v1.4 kernels.