diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 2382d1262e7f..5092ecae7706 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -1709,7 +1709,8 @@ static int ath9k_ampdu_action(struct ieee80211_hw *hw,  		flush = true;  	case IEEE80211_AMPDU_TX_STOP_CONT:  		ath9k_ps_wakeup(sc); -		if (ath_tx_aggr_stop(sc, sta, tid, flush)) +		ath_tx_aggr_stop(sc, sta, tid); +		if (!flush)  			ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);  		ath9k_ps_restore(sc);  		break;  |