diff options
author | Florian Westphal <fw@strlen.de> | 2016-05-03 10:33:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-04 14:16:49 -0400 |
commit | 860e9538a9482bb84589f7d0718a7e6d0a944d58 (patch) | |
tree | 0bb6a166267299aadb498c2d857f38233d615809 /drivers/tty/synclinkmp.c | |
parent | ba162f8eed61a7e71e26455ce1cff5b5898a3579 (diff) |
treewide: replace dev->trans_start update with helper
Replace all trans_start updates with netif_trans_update helper.
change was done via spatch:
struct net_device *d;
@@
- d->trans_start = jiffies
+ netif_trans_update(d)
Compile tested only.
Cc: user-mode-linux-devel@lists.sourceforge.net
Cc: linux-xtensa@linux-xtensa.org
Cc: linux1394-devel@lists.sourceforge.net
Cc: linux-rdma@vger.kernel.org
Cc: netdev@vger.kernel.org
Cc: MPT-FusionLinux.pdl@broadcom.com
Cc: linux-scsi@vger.kernel.org
Cc: linux-can@vger.kernel.org
Cc: linux-parisc@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: linux-hams@vger.kernel.org
Cc: linux-usb@vger.kernel.org
Cc: linux-wireless@vger.kernel.org
Cc: linux-s390@vger.kernel.org
Cc: devel@driverdev.osuosl.org
Cc: b.a.t.m.a.n@lists.open-mesh.org
Cc: linux-bluetooth@vger.kernel.org
Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Acked-by: Mugunthan V N <mugunthanvnm@ti.com>
Acked-by: Antonio Quartulli <a@unstable.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/tty/synclinkmp.c')
-rw-r--r-- | drivers/tty/synclinkmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/synclinkmp.c b/drivers/tty/synclinkmp.c index 90da0c712262..3f8968543af0 100644 --- a/drivers/tty/synclinkmp.c +++ b/drivers/tty/synclinkmp.c | |||
@@ -1612,7 +1612,7 @@ static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb, | |||
1612 | dev_kfree_skb(skb); | 1612 | dev_kfree_skb(skb); |
1613 | 1613 | ||
1614 | /* save start time for transmit timeout detection */ | 1614 | /* save start time for transmit timeout detection */ |
1615 | dev->trans_start = jiffies; | 1615 | netif_trans_update(dev); |
1616 | 1616 | ||
1617 | /* start hardware transmitter if necessary */ | 1617 | /* start hardware transmitter if necessary */ |
1618 | spin_lock_irqsave(&info->lock,flags); | 1618 | spin_lock_irqsave(&info->lock,flags); |
@@ -1668,7 +1668,7 @@ static int hdlcdev_open(struct net_device *dev) | |||
1668 | program_hw(info); | 1668 | program_hw(info); |
1669 | 1669 | ||
1670 | /* enable network layer transmit */ | 1670 | /* enable network layer transmit */ |
1671 | dev->trans_start = jiffies; | 1671 | netif_trans_update(dev); |
1672 | netif_start_queue(dev); | 1672 | netif_start_queue(dev); |
1673 | 1673 | ||
1674 | /* inform generic HDLC layer of current DCD status */ | 1674 | /* inform generic HDLC layer of current DCD status */ |