diff options
author | Janne Ylalehto <janne.ylalehto@nokia.com> | 2009-11-17 11:49:38 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-18 17:09:22 -0500 |
commit | a1590f2404d1c8d16f8ceed4fccc32ab9831e484 (patch) | |
tree | b44ec279b8e8474dc27577d06091a03d0c5b54ae /drivers | |
parent | dcea4dbe54f5bbea2ef0bb265072754ccd934a1e (diff) |
wl1251: Filter out unwanted events
Filter out unwanted events to reduce wakeups.
Signed-off-by: Janne Ylalehto <janne.ylalehto@nokia.com>
Reviewed-by: Vidhya Govindan <vidhya.govindan@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_boot.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1251_boot.c b/drivers/net/wireless/wl12xx/wl1251_boot.c index 8febf27ab28..5094f24ad03 100644 --- a/drivers/net/wireless/wl12xx/wl1251_boot.c +++ b/drivers/net/wireless/wl12xx/wl1251_boot.c | |||
@@ -296,8 +296,12 @@ int wl1251_boot_run_firmware(struct wl1251 *wl) | |||
296 | WL1251_ACX_INTR_INIT_COMPLETE; | 296 | WL1251_ACX_INTR_INIT_COMPLETE; |
297 | wl1251_boot_target_enable_interrupts(wl); | 297 | wl1251_boot_target_enable_interrupts(wl); |
298 | 298 | ||
299 | /* unmask all mbox events */ | 299 | wl->event_mask = SCAN_COMPLETE_EVENT_ID | BSS_LOSE_EVENT_ID | |
300 | wl->event_mask = 0xffffffff; | 300 | SYNCHRONIZATION_TIMEOUT_EVENT_ID | |
301 | ROAMING_TRIGGER_LOW_RSSI_EVENT_ID | | ||
302 | ROAMING_TRIGGER_REGAINED_RSSI_EVENT_ID | | ||
303 | REGAINED_BSS_EVENT_ID | BT_PTA_SENSE_EVENT_ID | | ||
304 | BT_PTA_PREDICTION_EVENT_ID; | ||
301 | 305 | ||
302 | ret = wl1251_event_unmask(wl); | 306 | ret = wl1251_event_unmask(wl); |
303 | if (ret < 0) { | 307 | if (ret < 0) { |