diff options
author | Intiyaz Basha <intiyaz.basha@cavium.com> | 2018-03-24 03:37:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-25 23:18:54 +0300 |
commit | dd69debce4a13df39aad6d218a743c4d9a0cf6f3 (patch) | |
tree | 758265f94224ad331cd65e387a8d1126566ab576 /drivers/net/ethernet/cavium/liquidio/lio_vf_main.c | |
parent | 78a202f00d0970544ee96803b5b1c1fe65f8a433 (diff) | |
download | linux-dd69debce4a13df39aad6d218a743c4d9a0cf6f3.tar.xz |
liquidio: Removed one line function wake_q
Removing one line function wake_q
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>
Diffstat (limited to 'drivers/net/ethernet/cavium/liquidio/lio_vf_main.c')
-rw-r--r-- | drivers/net/ethernet/cavium/liquidio/lio_vf_main.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/net/ethernet/cavium/liquidio/lio_vf_main.c b/drivers/net/ethernet/cavium/liquidio/lio_vf_main.c index 3120aed30c61..5ab0831d6b53 100644 --- a/drivers/net/ethernet/cavium/liquidio/lio_vf_main.c +++ b/drivers/net/ethernet/cavium/liquidio/lio_vf_main.c @@ -285,16 +285,6 @@ static struct pci_driver liquidio_vf_pci_driver = { }; /** - * \brief Wake a queue - * @param netdev network device - * @param q which queue to wake - */ -static void wake_q(struct net_device *netdev, int q) -{ - netif_wake_subqueue(netdev, q); -} - -/** * Remove the node at the head of the list. The list would be empty at * the end of this call if there are no more nodes in the list. */ @@ -980,7 +970,7 @@ static int check_txq_state(struct lio *lio, struct sk_buff *skb) if (__netif_subqueue_stopped(lio->netdev, q)) { INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1); - wake_q(lio->netdev, q); + netif_wake_subqueue(lio->netdev, q); } return 1; |