1dcac53e4e00d8049d73f34e2165e2a7b0faae2d
[openwrt.git] / package / mac80211 / patches / 580-ath9k_aggr_start_fix.patch
1 --- a/drivers/net/wireless/ath/ath9k/xmit.c
2 +++ b/drivers/net/wireless/ath/ath9k/xmit.c
3 @@ -124,7 +124,8 @@ static void ath_tx_resume_tid(struct ath
4 {
5 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
6
7 - WARN_ON(!tid->paused);
8 + if (!tid->paused)
9 + return;
10
11 spin_lock_bh(&txq->axq_lock);
12 tid->paused = false;
This page took 0.04071 seconds and 3 git commands to generate.