Commit 37ba1eba authored by Martin Kaiser's avatar Martin Kaiser Committed by Greg Kroah-Hartman

staging: r8188eu: remove rtw_netif_stop_queue wrapper

Remove the rtw_netif_stop_queue wrapper function. Call
netif_tx_stop_all_queues directly.
Signed-off-by: default avatarMartin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20220115165536.231210-11-martin@kaiser.cxSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 19f48a3c
...@@ -67,11 +67,6 @@ static inline int rtw_netif_queue_stopped(struct net_device *pnetdev) ...@@ -67,11 +67,6 @@ static inline int rtw_netif_queue_stopped(struct net_device *pnetdev)
netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 3)); netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 3));
} }
static inline void rtw_netif_stop_queue(struct net_device *pnetdev)
{
netif_tx_stop_all_queues(pnetdev);
}
extern int RTW_STATUS_CODE(int error_code); extern int RTW_STATUS_CODE(int error_code);
void *rtw_malloc2d(int h, int w, int size); void *rtw_malloc2d(int h, int w, int size);
......
...@@ -667,7 +667,7 @@ int _netdev_open(struct net_device *pnetdev) ...@@ -667,7 +667,7 @@ int _netdev_open(struct net_device *pnetdev)
netdev_open_error: netdev_open_error:
padapter->bup = false; padapter->bup = false;
netif_carrier_off(pnetdev); netif_carrier_off(pnetdev);
rtw_netif_stop_queue(pnetdev); netif_tx_stop_all_queues(pnetdev);
DBG_88E("-88eu_drv - drv_open fail, bup =%d\n", padapter->bup); DBG_88E("-88eu_drv - drv_open fail, bup =%d\n", padapter->bup);
return -1; return -1;
} }
...@@ -769,7 +769,7 @@ int netdev_close(struct net_device *pnetdev) ...@@ -769,7 +769,7 @@ int netdev_close(struct net_device *pnetdev)
/* s1. */ /* s1. */
if (pnetdev) { if (pnetdev) {
if (!rtw_netif_queue_stopped(pnetdev)) if (!rtw_netif_queue_stopped(pnetdev))
rtw_netif_stop_queue(pnetdev); netif_tx_stop_all_queues(pnetdev);
} }
/* s2. */ /* s2. */
......
...@@ -236,7 +236,7 @@ static int rtw_suspend(struct usb_interface *pusb_intf, pm_message_t message) ...@@ -236,7 +236,7 @@ static int rtw_suspend(struct usb_interface *pusb_intf, pm_message_t message)
/* s1. */ /* s1. */
if (pnetdev) { if (pnetdev) {
netif_carrier_off(pnetdev); netif_carrier_off(pnetdev);
rtw_netif_stop_queue(pnetdev); netif_tx_stop_all_queues(pnetdev);
} }
/* s2. */ /* s2. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment