aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2013-02-11 07:49:40 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2013-02-11 07:49:40 +0000
commit53a835d2dba590ae9d49aee379d7398d11773a88 (patch)
treeec235d849ad8fd220c268d6f225e6d5a2c8efdf4 /sys/dev
parent8a2dc7faae2cc4b0d026279ba1ac65aa221fec21 (diff)
downloadsrc-53a835d2dba590ae9d49aee379d7398d11773a88.tar.gz
src-53a835d2dba590ae9d49aee379d7398d11773a88.zip
Put this back into the ath taskqueue rather than the ath TX taskqueue.
This now should mean all the entry points into the software TX scheduler are back in the same taskqueue.
Notes
Notes: svn path=/head/; revision=246652
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ath/if_ath_misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/if_ath_misc.h b/sys/dev/ath/if_ath_misc.h
index d81ef4ce8fc8..f35fc11f3b9d 100644
--- a/sys/dev/ath/if_ath_misc.h
+++ b/sys/dev/ath/if_ath_misc.h
@@ -137,7 +137,7 @@ static inline void
ath_tx_swq_kick(struct ath_softc *sc)
{
- taskqueue_enqueue(sc->sc_tx_tq, &sc->sc_txqtask);
+ taskqueue_enqueue(sc->sc_tq, &sc->sc_txqtask);
}
#endif