summaryrefslogtreecommitdiffstats
path: root/sys/dev/ath/if_ath_beacon.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ath/if_ath_beacon.c')
-rw-r--r--sys/dev/ath/if_ath_beacon.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ath/if_ath_beacon.c b/sys/dev/ath/if_ath_beacon.c
index 220361a..bb1e393 100644
--- a/sys/dev/ath/if_ath_beacon.c
+++ b/sys/dev/ath/if_ath_beacon.c
@@ -564,8 +564,7 @@ ath_beacon_generate(struct ath_softc *sc, struct ieee80211vap *vap)
struct ath_hal *ah = sc->sc_ah;
/* NB: only at DTIM */
- ATH_TXQ_LOCK(cabq);
- ATH_TXQ_LOCK(&avp->av_mcastq);
+ ATH_TX_LOCK(sc);
if (nmcastq) {
struct ath_buf *bfm;
@@ -586,8 +585,7 @@ ath_beacon_generate(struct ath_softc *sc, struct ieee80211vap *vap)
/* NB: gated by beacon so safe to start here */
if (! TAILQ_EMPTY(&(cabq->axq_q)))
ath_hal_txstart(ah, cabq->axq_qnum);
- ATH_TXQ_UNLOCK(&avp->av_mcastq);
- ATH_TXQ_UNLOCK(cabq);
+ ATH_TX_UNLOCK(sc);
}
return bf;
}
OpenPOWER on IntegriCloud