diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00config.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00config.c b/drivers/net/wireless/rt2x00/rt2x00config.c index 293676bfa571..e7361d913e8e 100644 --- a/drivers/net/wireless/rt2x00/rt2x00config.c +++ b/drivers/net/wireless/rt2x00/rt2x00config.c | |||
@@ -217,6 +217,11 @@ void rt2x00lib_config(struct rt2x00_dev *rt2x00dev, | |||
217 | libconf.conf = conf; | 217 | libconf.conf = conf; |
218 | 218 | ||
219 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) { | 219 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) { |
220 | if (!conf_is_ht(conf)) | ||
221 | set_bit(CONFIG_HT_DISABLED, &rt2x00dev->flags); | ||
222 | else | ||
223 | clear_bit(CONFIG_HT_DISABLED, &rt2x00dev->flags); | ||
224 | |||
220 | if (conf_is_ht40(conf)) { | 225 | if (conf_is_ht40(conf)) { |
221 | set_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); | 226 | set_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); |
222 | hw_value = rt2x00ht_center_channel(rt2x00dev, conf); | 227 | hw_value = rt2x00ht_center_channel(rt2x00dev, conf); |