summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath9k/ath9k.h
diff options
context:
space:
mode:
authorSujith Manoharan <c_manoha@qca.qualcomm.com>2012-03-14 14:41:05 +0530
committerJohn W. Linville <linville@tuxdriver.com>2012-03-15 13:40:29 -0400
commitd47a61aa228709fe1704e18a2f444661c10b81c0 (patch)
treeec05c107b4ceddcb203453004d9002f1d40723cb /drivers/net/wireless/ath/ath9k/ath9k.h
parent3d4e20f2d1e720c63887aee6a985e7870baf4ba1 (diff)
ath9k: Fix multi-VIF BSS handling
mac80211 provides short preamble information and ERP protection information on a per-BSS basis, which can be used. Remove flags stored in the driver, which was incorrect since they were being used in a global manner. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r--drivers/net/wireless/ath/ath9k/ath9k.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h
index 5ecec83117d6..8c84049682ab 100644
--- a/drivers/net/wireless/ath/ath9k/ath9k.h
+++ b/drivers/net/wireless/ath/ath9k/ath9k.h
@@ -584,16 +584,12 @@ struct ath_ant_comb {
#define SC_OP_INVALID BIT(0)
#define SC_OP_BEACONS BIT(1)
#define SC_OP_OFFCHANNEL BIT(2)
-#define SC_OP_PREAMBLE_SHORT BIT(3)
-#define SC_OP_PROTECT_ENABLE BIT(4)
-#define SC_OP_RXFLUSH BIT(5)
-#define SC_OP_LED_ASSOCIATED BIT(6)
-#define SC_OP_LED_ON BIT(7)
-#define SC_OP_TSF_RESET BIT(8)
-#define SC_OP_BT_PRIORITY_DETECTED BIT(9)
-#define SC_OP_BT_SCAN BIT(10)
-#define SC_OP_ANI_RUN BIT(11)
-#define SC_OP_PRIM_STA_VIF BIT(12)
+#define SC_OP_RXFLUSH BIT(3)
+#define SC_OP_TSF_RESET BIT(4)
+#define SC_OP_BT_PRIORITY_DETECTED BIT(5)
+#define SC_OP_BT_SCAN BIT(6)
+#define SC_OP_ANI_RUN BIT(7)
+#define SC_OP_PRIM_STA_VIF BIT(8)
/* Powersave flags */
#define PS_WAIT_FOR_BEACON BIT(0)