summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorShahar Levi <shahar_levi@ti.com>2011-09-08 08:44:05 +0300
committerJohn W. Linville <linville@tuxdriver.com>2011-09-14 13:56:52 -0400
commit1ea57b1f12c045db5fca5d1299963ca1c70983ea (patch)
treec8f52d94f2d634dd36693f047a5a7560c2e37393 /net
parent5fbdf4a2dfbc320bb8422c88c0f59b624043add1 (diff)
downloadop-kernel-dev-1ea57b1f12c045db5fca5d1299963ca1c70983ea.zip
op-kernel-dev-1ea57b1f12c045db5fca5d1299963ca1c70983ea.tar.gz
mac80211: Update device channel in case of HW channel switch supported
The hw.conf.channel value is not updated properly for drivers that support HW channel switch. Since the switch is done entirely by the driver and we don't call ieee80211_hw_config(), this value remains untouched. This patch fixes that by setting the new channel directly in ieee80211_chswitch_work(). Signed-off-by: Shahar Levi <shahar_levi@ti.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/mlme.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index ca97b80..2f92ae2 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -390,6 +390,9 @@ static void ieee80211_chswitch_work(struct work_struct *work)
/* call "hw_config" only if doing sw channel switch */
ieee80211_hw_config(sdata->local,
IEEE80211_CONF_CHANGE_CHANNEL);
+ } else {
+ /* update the device channel directly */
+ sdata->local->hw.conf.channel = sdata->local->oper_channel;
}
/* XXX: shouldn't really modify cfg80211-owned data! */
OpenPOWER on IntegriCloud