diff options
Diffstat (limited to 'net/mac80211/scan.c')
-rw-r--r-- | net/mac80211/scan.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index 23f4de274744..0e81e1633a66 100644 --- a/net/mac80211/scan.c +++ b/net/mac80211/scan.c | |||
@@ -245,6 +245,9 @@ void ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted) | |||
245 | netif_addr_unlock(local->mdev); | 245 | netif_addr_unlock(local->mdev); |
246 | netif_tx_unlock_bh(local->mdev); | 246 | netif_tx_unlock_bh(local->mdev); |
247 | 247 | ||
248 | if (local->ops->sw_scan_complete) | ||
249 | local->ops->sw_scan_complete(local_to_hw(local)); | ||
250 | |||
248 | mutex_lock(&local->iflist_mtx); | 251 | mutex_lock(&local->iflist_mtx); |
249 | list_for_each_entry(sdata, &local->interfaces, list) { | 252 | list_for_each_entry(sdata, &local->interfaces, list) { |
250 | if (!netif_running(sdata->dev)) | 253 | if (!netif_running(sdata->dev)) |
@@ -395,6 +398,8 @@ int ieee80211_start_scan(struct ieee80211_sub_if_data *scan_sdata, | |||
395 | } | 398 | } |
396 | 399 | ||
397 | local->sw_scanning = true; | 400 | local->sw_scanning = true; |
401 | if (local->ops->sw_scan_start) | ||
402 | local->ops->sw_scan_start(local_to_hw(local)); | ||
398 | 403 | ||
399 | mutex_lock(&local->iflist_mtx); | 404 | mutex_lock(&local->iflist_mtx); |
400 | list_for_each_entry(sdata, &local->interfaces, list) { | 405 | list_for_each_entry(sdata, &local->interfaces, list) { |