Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51e99158 authored by Andrey Yurovsky's avatar Andrey Yurovsky Committed by John W. Linville
Browse files

libertas_tf: return NETDEV_TX_OK in TX op



The TX op should return NETDEV_TX_OK or NETDEV_TX_BUSY.

Signed-off-by: default avatarAndrey Yurovsky <andrey@cozybit.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f1dd2b23
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)