Commit feb47eb8 authored by Yoni Divinsky's avatar Yoni Divinsky Committed by Luciano Coelho

wlcore: fix the CONF_TX_AC_ANY_TID to be 0xff

In the enum conf_tx_ac CONF_TX_AC_ANY_TID should
be 0xff to match the firmware's implementation.
Signed-off-by: default avatarYoni Divinsky <yoni.divinsky@ti.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent 4a6c789b
...@@ -518,7 +518,7 @@ enum conf_tx_ac { ...@@ -518,7 +518,7 @@ enum conf_tx_ac {
CONF_TX_AC_VI = 2, /* video */ CONF_TX_AC_VI = 2, /* video */
CONF_TX_AC_VO = 3, /* voice */ CONF_TX_AC_VO = 3, /* voice */
CONF_TX_AC_CTS2SELF = 4, /* fictitious AC, follows AC_VO */ CONF_TX_AC_CTS2SELF = 4, /* fictitious AC, follows AC_VO */
CONF_TX_AC_ANY_TID = 0x1f CONF_TX_AC_ANY_TID = 0xff
}; };
struct conf_tx_ac_category { struct conf_tx_ac_category {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment