diff options
| author | Yoni Divinsky <yoni.divinsky@ti.com> | 2012-05-08 15:02:14 +0400 |
|---|---|---|
| committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 21:24:31 +0400 |
| commit | feb47eb86b44fb420c7fe92726e5f359bcea4bdf (patch) | |
| tree | 450824cde89a434a19933a412e15d8b34ccca12e | |
| parent | 4a6c789b731a095da745d513f9ea0b5531acc9c7 (diff) | |
| download | linux-feb47eb86b44fb420c7fe92726e5f359bcea4bdf.tar.xz | |
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: Yoni Divinsky <yoni.divinsky@ti.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
| -rw-r--r-- | drivers/net/wireless/ti/wlcore/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wlcore/conf.h b/drivers/net/wireless/ti/wlcore/conf.h index 14dd361fa828..d2c4885d0d77 100644 --- a/drivers/net/wireless/ti/wlcore/conf.h +++ b/drivers/net/wireless/ti/wlcore/conf.h @@ -518,7 +518,7 @@ enum conf_tx_ac { CONF_TX_AC_VI = 2, /* video */ CONF_TX_AC_VO = 3, /* voice */ 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 { |
