aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/dec/tulip/dmfe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/dec/tulip/dmfe.c')
-rw-r--r--drivers/net/ethernet/dec/tulip/dmfe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/dec/tulip/dmfe.c b/drivers/net/ethernet/dec/tulip/dmfe.c
index 42c759ef8ff0..8ed0fd8b1dda 100644
--- a/drivers/net/ethernet/dec/tulip/dmfe.c
+++ b/drivers/net/ethernet/dec/tulip/dmfe.c
@@ -725,7 +725,7 @@ static netdev_tx_t dmfe_start_xmit(struct sk_buff *skb,
725 txptr->tdes0 = cpu_to_le32(0x80000000); /* Set owner bit */ 725 txptr->tdes0 = cpu_to_le32(0x80000000); /* Set owner bit */
726 db->tx_packet_cnt++; /* Ready to send */ 726 db->tx_packet_cnt++; /* Ready to send */
727 dw32(DCR1, 0x1); /* Issue Tx polling */ 727 dw32(DCR1, 0x1); /* Issue Tx polling */
728 dev->trans_start = jiffies; /* saved time stamp */ 728 netif_trans_update(dev); /* saved time stamp */
729 } else { 729 } else {
730 db->tx_queue_cnt++; /* queue TX packet */ 730 db->tx_queue_cnt++; /* queue TX packet */
731 dw32(DCR1, 0x1); /* Issue Tx polling */ 731 dw32(DCR1, 0x1); /* Issue Tx polling */
@@ -931,7 +931,7 @@ static void dmfe_free_tx_pkt(struct net_device *dev, struct dmfe_board_info *db)
931 db->tx_packet_cnt++; /* Ready to send */ 931 db->tx_packet_cnt++; /* Ready to send */
932 db->tx_queue_cnt--; 932 db->tx_queue_cnt--;
933 dw32(DCR1, 0x1); /* Issue Tx polling */ 933 dw32(DCR1, 0x1); /* Issue Tx polling */
934 dev->trans_start = jiffies; /* saved time stamp */ 934 netif_trans_update(dev); /* saved time stamp */
935 } 935 }
936 936
937 /* Resource available check */ 937 /* Resource available check */
@@ -1542,7 +1542,7 @@ static void send_filter_frame(struct net_device *dev)
1542 update_cr6(db->cr6_data | 0x2000, ioaddr); 1542 update_cr6(db->cr6_data | 0x2000, ioaddr);
1543 dw32(DCR1, 0x1); /* Issue Tx polling */ 1543 dw32(DCR1, 0x1); /* Issue Tx polling */
1544 update_cr6(db->cr6_data, ioaddr); 1544 update_cr6(db->cr6_data, ioaddr);
1545 dev->trans_start = jiffies; 1545 netif_trans_update(dev);
1546 } else 1546 } else
1547 db->tx_queue_cnt++; /* Put in TX queue */ 1547 db->tx_queue_cnt++; /* Put in TX queue */
1548} 1548}