mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 23:16:49 +07:00
ath9k: Fix pending frame check
Checking for the queue depth outside of the TX queue lock is incorrect and in this case, is not required since it is done inside ath9k_has_pending_frames(). Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
b736728575
commit
fc1314c75e
@ -1974,9 +1974,6 @@ static bool ath9k_has_tx_pending(struct ath_softc *sc)
|
||||
if (!ATH_TXQ_SETUP(sc, i))
|
||||
continue;
|
||||
|
||||
if (!sc->tx.txq[i].axq_depth)
|
||||
continue;
|
||||
|
||||
npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
|
||||
if (npend)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user