aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-fw.h
diff options
context:
space:
mode:
authorDavid Spinadel <david.spinadel@intel.com>2013-08-21 02:14:27 -0400
committerJohannes Berg <johannes.berg@intel.com>2013-10-02 12:00:39 -0400
commit20f1a5deb67f00cef89d63fb957a940c7f976cf3 (patch)
tree65073a059256415cff46cc9efacba8946a2ab7de /drivers/net/wireless/iwlwifi/iwl-fw.h
parent3394817f833f13958320ae6e0dccf347c1ce5200 (diff)
iwlwifi: mvm: add no_basic_ssid option
New FW doesn't use the SSID from scan request template. Adding a TLV flag to indicate the change, and fixing the flows to send the first SSID in SSID list if the flag is on. Signed-off-by: David Spinadel <david.spinadel@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-fw.h')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-fw.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-fw.h b/drivers/net/wireless/iwlwifi/iwl-fw.h
index 3ddbc1bda74e..d2f0381d2abd 100644
--- a/drivers/net/wireless/iwlwifi/iwl-fw.h
+++ b/drivers/net/wireless/iwlwifi/iwl-fw.h
@@ -80,6 +80,8 @@
80 * @IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS: D3 image supports up to six 80 * @IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS: D3 image supports up to six
81 * (rather than two) IPv6 addresses 81 * (rather than two) IPv6 addresses
82 * @IWL_UCODE_TLV_FLAGS_BF_UPDATED: new beacon filtering API 82 * @IWL_UCODE_TLV_FLAGS_BF_UPDATED: new beacon filtering API
83 * @IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID: not sending a probe with the SSID element
84 * from the probe request template.
83 * @IWL_UCODE_TLV_FLAGS_STA_KEY_CMD: new ADD_STA and ADD_STA_KEY command API 85 * @IWL_UCODE_TLV_FLAGS_STA_KEY_CMD: new ADD_STA and ADD_STA_KEY command API
84 */ 86 */
85enum iwl_ucode_tlv_flag { 87enum iwl_ucode_tlv_flag {
@@ -93,6 +95,7 @@ enum iwl_ucode_tlv_flag {
93 IWL_UCODE_TLV_FLAGS_TIME_EVENT_API_V2 = BIT(9), 95 IWL_UCODE_TLV_FLAGS_TIME_EVENT_API_V2 = BIT(9),
94 IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS = BIT(10), 96 IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS = BIT(10),
95 IWL_UCODE_TLV_FLAGS_BF_UPDATED = BIT(11), 97 IWL_UCODE_TLV_FLAGS_BF_UPDATED = BIT(11),
98 IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID = BIT(12),
96 IWL_UCODE_TLV_FLAGS_STA_KEY_CMD = BIT(19), 99 IWL_UCODE_TLV_FLAGS_STA_KEY_CMD = BIT(19),
97}; 100};
98 101