diff options
Diffstat (limited to 'sys/dev/ath/if_ath.c')
-rw-r--r-- | sys/dev/ath/if_ath.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index a5de2d0..28308c60 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -3852,7 +3852,8 @@ ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq) static __inline int txqactive(struct ath_hal *ah, int qnum) { - /* XXX not yet */ + u_int32_t txqs = 1<<qnum; + ath_hal_gettxintrtxqs(ah, &txqs); return 1; } |