mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
libertas_tf: return NETDEV_TX_OK in TX op
The TX op should return NETDEV_TX_OK or NETDEV_TX_BUSY. Signed-off-by: Andrey Yurovsky <andrey@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
f1dd2b23ba
commit
51e99158d2
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ static int lbtf_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
|
|||
* there are no buffered multicast frames to send
|
||||
*/
|
||||
ieee80211_stop_queues(priv->hw);
|
||||
return 0;
|
||||
return NETDEV_TX_OK;
|
||||
}
|
||||
|
||||
static void lbtf_tx_work(struct work_struct *work)
|
||||
|
|
Loading…
Reference in a new issue