diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-06-03 10:54:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-03 15:16:36 -0400 |
commit | 15b3f3b006b42a678523cad989bfd60b76bf4403 (patch) | |
tree | 826995269c2db9df30393689b8138f1c3dfb80bc /drivers/net/wireless/iwlwifi/iwl-core.h | |
parent | 88e9ba76bf906d8106d5f64856eba6e6d6777003 (diff) |
iwlagn: set smps mode after assoc for 1000 device
For some timing reason, 1000 device having problem to kick-in to aggregation
without sending rxon assoc command. This is a W/A until find the real reason
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-core.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-core.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h index a87b54fb9e7d..e430a4fc8c59 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.h +++ b/drivers/net/wireless/iwlwifi/iwl-core.h | |||
@@ -224,7 +224,7 @@ struct iwl_base_params { | |||
224 | * @ampdu_factor: Maximum A-MPDU length factor | 224 | * @ampdu_factor: Maximum A-MPDU length factor |
225 | * @ampdu_density: Minimum A-MPDU spacing | 225 | * @ampdu_density: Minimum A-MPDU spacing |
226 | * @bt_sco_disable: uCode should not response to BT in SCO/ESCO mode | 226 | * @bt_sco_disable: uCode should not response to BT in SCO/ESCO mode |
227 | */ | 227 | */ |
228 | struct iwl_bt_params { | 228 | struct iwl_bt_params { |
229 | bool advanced_bt_coexist; | 229 | bool advanced_bt_coexist; |
230 | u8 bt_init_traffic_load; | 230 | u8 bt_init_traffic_load; |
@@ -237,10 +237,11 @@ struct iwl_bt_params { | |||
237 | }; | 237 | }; |
238 | /* | 238 | /* |
239 | * @use_rts_for_aggregation: use rts/cts protection for HT traffic | 239 | * @use_rts_for_aggregation: use rts/cts protection for HT traffic |
240 | */ | 240 | */ |
241 | struct iwl_ht_params { | 241 | struct iwl_ht_params { |
242 | const bool ht_greenfield_support; /* if used set to true */ | 242 | const bool ht_greenfield_support; /* if used set to true */ |
243 | bool use_rts_for_aggregation; | 243 | bool use_rts_for_aggregation; |
244 | enum ieee80211_smps_mode smps_mode; | ||
244 | }; | 245 | }; |
245 | 246 | ||
246 | /** | 247 | /** |