diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-02-07 11:58:58 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-02-15 09:41:29 +0100 |
commit | 4a34215ef7487b1cbd783e7cc485eb03de893bd0 (patch) | |
tree | 53fed3935c3a9e3138cf952c6ed95d32da05a796 /net/mac80211/cfg.c | |
parent | Merge remote-tracking branch 'mac80211/master' into HEAD (diff) | |
download | linux-4a34215ef7487b1cbd783e7cc485eb03de893bd0.tar.xz linux-4a34215ef7487b1cbd783e7cc485eb03de893bd0.zip |
mac80211: pass station to ieee80211_vht_cap_ie_to_sta_vht_cap
Like with HT, make things a bit simpler in future patches by
passing the station to ieee80211_vht_cap_ie_to_sta_vht_cap()
instead of the vht_cap pointer. Also disable VHT here if HT
isn't supported.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 9b179309e073..9c9496d01120 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -1257,8 +1257,7 @@ static int sta_apply_parameters(struct ieee80211_local *local, if (params->vht_capa) ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband, - params->vht_capa, - &sta->sta.vht_cap); + params->vht_capa, sta); if (ieee80211_vif_is_mesh(&sdata->vif)) { #ifdef CONFIG_MAC80211_MESH |