diff options
author | Kalle Valo <kalle.valo@nokia.com> | 2009-08-07 06:35:26 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-14 09:13:42 -0400 |
commit | 2789da9e58cc8db4e74359491a425712b5fcfdb6 (patch) | |
tree | 84066255e87cc1fb59c2ea13bb360587f64395b0 | |
parent | b1b0a2b8b51fa3f0cd349f947a38ab4c6ab192c6 (diff) |
wl1251: add hw scan completed debug message
The logs currently don't show when hw scan has completed, fix that.
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Reviewed-by: Vidhya Govindan <vidhya.govindan@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_event.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1251_event.c b/drivers/net/wireless/wl12xx/wl1251_event.c index 7bd1b6aa699d..00076c4a8a21 100644 --- a/drivers/net/wireless/wl12xx/wl1251_event.c +++ b/drivers/net/wireless/wl12xx/wl1251_event.c | |||
@@ -39,6 +39,7 @@ static int wl1251_event_scan_complete(struct wl1251 *wl, | |||
39 | mutex_unlock(&wl->mutex); | 39 | mutex_unlock(&wl->mutex); |
40 | ieee80211_scan_completed(wl->hw, false); | 40 | ieee80211_scan_completed(wl->hw, false); |
41 | mutex_lock(&wl->mutex); | 41 | mutex_lock(&wl->mutex); |
42 | wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan completed"); | ||
42 | wl->scanning = false; | 43 | wl->scanning = false; |
43 | } | 44 | } |
44 | 45 | ||