aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ti/wl18xx/main.c
diff options
context:
space:
mode:
authorEliad Peller <eliad@wizery.com>2012-11-26 11:05:40 -0500
committerLuciano Coelho <coelho@ti.com>2012-11-28 04:45:42 -0500
commit7c482c1040ae54e89a8fd4d6415577070d5a915d (patch)
treef95c28757cb6335030fb06f5154f23c8478cb6d6 /drivers/net/wireless/ti/wl18xx/main.c
parent6507babab4f7fe6c51c20abedd66d7449b7a9aca (diff)
wlcore: configure dwell times according to scan type
Allow configuring different dwell times to the different scan types (regular and scheduled). Add new configuration entry (dwell_time_dfs) to conf_scan_settings, in order to allow setting different values for normal scan and scheduled scan. Signed-off-by: Eliad Peller <eliad@wizery.com> Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl18xx/main.c')
-rw-r--r--drivers/net/wireless/ti/wl18xx/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/main.c b/drivers/net/wireless/ti/wl18xx/main.c
index bb67d701f8a4..c015231d295f 100644
--- a/drivers/net/wireless/ti/wl18xx/main.c
+++ b/drivers/net/wireless/ti/wl18xx/main.c
@@ -394,8 +394,8 @@ static struct wlcore_conf wl18xx_conf = {
394 .scan = { 394 .scan = {
395 .min_dwell_time_active = 7500, 395 .min_dwell_time_active = 7500,
396 .max_dwell_time_active = 30000, 396 .max_dwell_time_active = 30000,
397 .min_dwell_time_passive = 100000, 397 .dwell_time_passive = 100000,
398 .max_dwell_time_passive = 100000, 398 .dwell_time_dfs = 150000,
399 .num_probe_reqs = 2, 399 .num_probe_reqs = 2,
400 .split_scan_timeout = 50000, 400 .split_scan_timeout = 50000,
401 }, 401 },