diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-06-12 14:25:04 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-12 14:25:04 -0400 |
commit | 0440507bbc44149e63bbfb9df730ba3820371904 (patch) | |
tree | 7275e41aa1aa7e4d19d0503f1c15f07991c1a120 /net/mac80211/scan.c | |
parent | 8d242488ce4627dd7e6333caab56df11ea25e239 (diff) | |
parent | 7f0d9f430dc99303558adc30a75eef10c43f7bec (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
Diffstat (limited to 'net/mac80211/scan.c')
-rw-r--r-- | net/mac80211/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index 6d90a562669f..267b2940fadd 100644 --- a/net/mac80211/scan.c +++ b/net/mac80211/scan.c | |||
@@ -322,7 +322,7 @@ static void __ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted, | |||
322 | ieee80211_mlme_notify_scan_completed(local); | 322 | ieee80211_mlme_notify_scan_completed(local); |
323 | ieee80211_ibss_notify_scan_completed(local); | 323 | ieee80211_ibss_notify_scan_completed(local); |
324 | ieee80211_mesh_notify_scan_completed(local); | 324 | ieee80211_mesh_notify_scan_completed(local); |
325 | ieee80211_queue_work(&local->hw, &local->work_work); | 325 | ieee80211_start_next_roc(local); |
326 | } | 326 | } |
327 | 327 | ||
328 | void ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted) | 328 | void ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted) |
@@ -375,7 +375,7 @@ static int ieee80211_start_sw_scan(struct ieee80211_local *local) | |||
375 | static bool ieee80211_can_scan(struct ieee80211_local *local, | 375 | static bool ieee80211_can_scan(struct ieee80211_local *local, |
376 | struct ieee80211_sub_if_data *sdata) | 376 | struct ieee80211_sub_if_data *sdata) |
377 | { | 377 | { |
378 | if (!list_empty(&local->work_list)) | 378 | if (!list_empty(&local->roc_list)) |
379 | return false; | 379 | return false; |
380 | 380 | ||
381 | if (sdata->vif.type == NL80211_IFTYPE_STATION && | 381 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |