mirror of https://gitee.com/openkylin/linux.git
mac80211: fix ieee80211_sta_process_chanswitch for 5/10 MHz channels
Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: Mathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
0670307992
commit
ab1e8ad3b4
|
@ -1102,6 +1102,15 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
|
||||||
case -1:
|
case -1:
|
||||||
cfg80211_chandef_create(&new_chandef, new_chan,
|
cfg80211_chandef_create(&new_chandef, new_chan,
|
||||||
NL80211_CHAN_NO_HT);
|
NL80211_CHAN_NO_HT);
|
||||||
|
/* keep width for 5/10 MHz channels */
|
||||||
|
switch (sdata->vif.bss_conf.chandef.width) {
|
||||||
|
case NL80211_CHAN_WIDTH_5:
|
||||||
|
case NL80211_CHAN_WIDTH_10:
|
||||||
|
new_chandef.width = sdata->vif.bss_conf.chandef.width;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue