diff options
author | Sujith Manoharan <Sujith.Manoharan@atheros.com> | 2011-05-17 12:41:31 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-19 13:53:59 -0400 |
commit | 84dfa7308ccba190ad7efe655c25ca80793c029e (patch) | |
tree | 3d8ad0e509ee7f1290d42d91291d5983279b17bd /drivers/net/wireless/ath/ath9k/htc.h | |
parent | c75197a779b6f5ee4c5b859423a0d5257475ebee (diff) | |
download | blackbird-op-linux-84dfa7308ccba190ad7efe655c25ca80793c029e.tar.gz blackbird-op-linux-84dfa7308ccba190ad7efe655c25ca80793c029e.zip |
ath9k_htc: Fix station flags
The FW does absolutely nothing with the station flags,
so remove them. But keep the field around since it might
come in handy in the future.
Signed-off-by: Sujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h index 5ec214c37530..29dfdf8ebee4 100644 --- a/drivers/net/wireless/ath/ath9k/htc.h +++ b/drivers/net/wireless/ath/ath9k/htc.h @@ -116,18 +116,13 @@ struct ath9k_htc_target_vif { u8 pad; } __packed; -#define ATH_HTC_STA_AUTH 0x0001 -#define ATH_HTC_STA_QOS 0x0002 -#define ATH_HTC_STA_ERP 0x0004 -#define ATH_HTC_STA_HT 0x0008 - struct ath9k_htc_target_sta { u8 macaddr[ETH_ALEN]; u8 bssid[ETH_ALEN]; u8 sta_index; u8 vif_index; u8 is_vif_sta; - __be16 flags; /* ATH_HTC_STA_* */ + __be16 flags; __be16 htcap; __be16 maxampdu; u8 pad; |