Commit b789f333 authored by Zhiwei Jiang's avatar Zhiwei Jiang Committed by Kalle Valo

ath: move spin_lock_bh to spin_lock in tasklet

as you are already in a tasklet, it is unnecessary to call
spin_lock_bh, because softirq already disable BH.
Signed-off-by: default avatarZhiwei Jiang <qq282012236@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent cd98625b
......@@ -574,12 +574,12 @@ void ath9k_tx_failed_tasklet(unsigned long data)
{
struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *)data;
spin_lock_bh(&priv->tx.tx_lock);
spin_lock(&priv->tx.tx_lock);
if (priv->tx.flags & ATH9K_HTC_OP_TX_DRAIN) {
spin_unlock_bh(&priv->tx.tx_lock);
spin_unlock(&priv->tx.tx_lock);
return;
}
spin_unlock_bh(&priv->tx.tx_lock);
spin_unlock(&priv->tx.tx_lock);
ath9k_htc_tx_drainq(priv, &priv->tx.tx_failed);
}
......
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