liquidio: Removed one line function stop_txq
Removing one line function stop_txq Signed-off-by: Intiyaz Basha <intiyaz.basha@cavium.com> Acked-by: Derek Chickles <derek.chickles@cavium.com> Signed-off-by: Felix Manlunas <felix.manlunas@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5da052a6bd
commit
c5662c8c6d
|
@ -513,15 +513,6 @@ static void liquidio_deinit_pci(void)
|
|||
pci_unregister_driver(&liquidio_pci_driver);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Stop Tx queue
|
||||
* @param netdev network device
|
||||
*/
|
||||
static void stop_txq(struct net_device *netdev)
|
||||
{
|
||||
txqs_stop(netdev);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Start Tx queue
|
||||
* @param netdev network device
|
||||
|
@ -844,7 +835,7 @@ static inline void update_link_status(struct net_device *netdev,
|
|||
} else {
|
||||
dev_dbg(&oct->pci_dev->dev, "%s: link_off", __func__);
|
||||
netif_carrier_off(netdev);
|
||||
stop_txq(netdev);
|
||||
txqs_stop(netdev);
|
||||
}
|
||||
if (lio->linfo.link.s.mtu != current_max_mtu) {
|
||||
netif_info(lio, probe, lio->netdev, "Max MTU changed from %d to %d\n",
|
||||
|
|
Loading…
Reference in New Issue