ath9k: fix BE/BK queue order
Hardware queues are ordered by priority. Use queue index 0 for BK, which has lower priority than BE. Cc: stable@vger.kernel.org Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
ad8fdccf9c
commit
78063d81d3
@ -217,8 +217,8 @@
|
||||
#define AH_WOW_BEACON_MISS BIT(3)
|
||||
|
||||
enum ath_hw_txq_subtype {
|
||||
ATH_TXQ_AC_BE = 0,
|
||||
ATH_TXQ_AC_BK = 1,
|
||||
ATH_TXQ_AC_BK = 0,
|
||||
ATH_TXQ_AC_BE = 1,
|
||||
ATH_TXQ_AC_VI = 2,
|
||||
ATH_TXQ_AC_VO = 3,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user