From: Ivan Khoronzhuk Date: Thu, 9 Feb 2017 14:17:40 +0000 (+0200) Subject: net: ethernet: ti: netcp_core: remove netif_trans_update X-Git-Tag: v4.11-rc1~124^2~150 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1deeaa0b86973bef6629396cc0f5f092872bb6de;p=karo-tx-linux.git net: ethernet: ti: netcp_core: remove netif_trans_update No need to update jiffies in txq->trans_start twice and only for tx 0, it's supposed to be done in netdev_start_xmit() and per tx queue. Signed-off-by: Ivan Khoronzhuk Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/ti/netcp_core.c b/drivers/net/ethernet/ti/netcp_core.c index ebab1473f366..7c7ae0890e90 100644 --- a/drivers/net/ethernet/ti/netcp_core.c +++ b/drivers/net/ethernet/ti/netcp_core.c @@ -1316,8 +1316,6 @@ static int netcp_ndo_start_xmit(struct sk_buff *skb, struct net_device *ndev) if (ret) goto drop; - netif_trans_update(ndev); - /* Check Tx pool count & stop subqueue if needed */ desc_count = knav_pool_count(netcp->tx_pool); if (desc_count < netcp->tx_pause_threshold) {