mac80211: fix CSA handling timer

The time until the channel switch is in TU,
not in milliseconds, so use TU_TO_EXP_TIME()
to correctly program the timer.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2012-08-01 15:53:45 +02:00
Родитель 57eebdf3c2
Коммит 3049000b97
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -813,8 +813,7 @@ void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
else
mod_timer(&ifmgd->chswitch_timer,
jiffies +
msecs_to_jiffies(sw_elem->count *
TU_TO_EXP_TIME(sw_elem->count *
cbss->beacon_interval));
}