From: Neil Horman Date: Tue, 21 Jul 2015 13:55:46 +0000 (-0400) Subject: staging: unisys: Remove trans_start X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a42ba26cca4ed183362d5adb5dad227f908b4ddb;p=linux-beck.git staging: unisys: Remove trans_start dev_trans_start does this for us now Signed-off-by: Neil Horman Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys/visornic/visornic_main.c index 8cc9017a67a1..37f3e277285b 100644 --- a/drivers/staging/unisys/visornic/visornic_main.c +++ b/drivers/staging/unisys/visornic/visornic_main.c @@ -932,12 +932,6 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) /* Track the skbs that have been sent to the IOVM for XMIT */ skb_queue_head(&devdata->xmitbufhead, skb); - /* set the last transmission start time - * linux doc says: Do not forget to update netdev->trans_start to - * jiffies after each new tx packet is given to the hardware. - */ - netdev->trans_start = jiffies; - /* update xmt stats */ devdata->net_stats.tx_packets++; devdata->net_stats.tx_bytes += skb->len;