summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorNeil Horman <nhorman@redhat.com>2015-07-21 09:55:46 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-22 21:20:25 -0700
commita42ba26cca4ed183362d5adb5dad227f908b4ddb (patch)
tree7fdd1208b291dd9b3271a96bd1f4bc57a9d573f2 /drivers/staging/unisys
parentf6346ad662e44d7086bc3c18fc19a33f0b95b576 (diff)
downloadlinux-a42ba26cca4ed183362d5adb5dad227f908b4ddb.tar.bz2
staging: unisys: Remove trans_start
dev_trans_start does this for us now Signed-off-by: Neil Horman <nhorman@redhat.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visornic/visornic_main.c6
1 files changed, 0 insertions, 6 deletions
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;