aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2008-09-02 23:26:42 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-09-11 15:53:31 -0400
commit00c5ae2fa0f8191a1b204e71f0ee11359e3b2c06 (patch)
tree06ebdd29be276ef829e270497781db43783a8710 /net
parent1e493d1946a0b26b79001c18d7312d536156ff5a (diff)
mac80211: change MIMO_PS to SM_PS
This patch follows 11n spec naming more rigorously replacing MIMO_PS with SM_PS (Spatial Multiplexing Power Save). (Originally submitted as 4 patches, "mac80211: change MIMO_PS to SM_PS", "iwlwifi: change MIMO_PS to SM_PS", "ath9k: change MIMO_PS to SM_PS", and "iwlwifi: remove double definition of SM PS". -- JWL) Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index 396cfb2d0f46..7dc063197259 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -1140,8 +1140,8 @@ u32 ieee80211_handle_ht(struct ieee80211_local *local, int enable_ht,
1140 ht_conf.ht_supported = 1; 1140 ht_conf.ht_supported = 1;
1141 1141
1142 ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap; 1142 ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap;
1143 ht_conf.cap &= ~(IEEE80211_HT_CAP_MIMO_PS); 1143 ht_conf.cap &= ~(IEEE80211_HT_CAP_SM_PS);
1144 ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_MIMO_PS; 1144 ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_SM_PS;
1145 ht_bss_conf.primary_channel = req_bss_cap->primary_channel; 1145 ht_bss_conf.primary_channel = req_bss_cap->primary_channel;
1146 ht_bss_conf.bss_cap = req_bss_cap->bss_cap; 1146 ht_bss_conf.bss_cap = req_bss_cap->bss_cap;
1147 ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode; 1147 ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode;