diff options
author | Michael Buesch <mb@bu3sch.de> | 2009-02-20 15:37:03 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-27 14:52:51 -0500 |
commit | 80e775bf08f1915870fbb0c1c7a45a3fdc291721 (patch) | |
tree | 117d475755d5f4f0aba17f9efce8fa4fd51d0d10 /net/mac80211/scan.c | |
parent | 8821905cfb65504f64e6beb014133bd2a998f5dc (diff) | |
download | linux-3.10-80e775bf08f1915870fbb0c1c7a45a3fdc291721.tar.gz linux-3.10-80e775bf08f1915870fbb0c1c7a45a3fdc291721.tar.bz2 linux-3.10-80e775bf08f1915870fbb0c1c7a45a3fdc291721.zip |
mac80211: Add software scan notifiers
This adds optional notifier functions for software scan.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
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 23f4de27474..0e81e1633a6 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) netif_addr_unlock(local->mdev); netif_tx_unlock_bh(local->mdev); + if (local->ops->sw_scan_complete) + local->ops->sw_scan_complete(local_to_hw(local)); + mutex_lock(&local->iflist_mtx); list_for_each_entry(sdata, &local->interfaces, list) { if (!netif_running(sdata->dev)) @@ -395,6 +398,8 @@ int ieee80211_start_scan(struct ieee80211_sub_if_data *scan_sdata, } local->sw_scanning = true; + if (local->ops->sw_scan_start) + local->ops->sw_scan_start(local_to_hw(local)); mutex_lock(&local->iflist_mtx); list_for_each_entry(sdata, &local->interfaces, list) { |