diff options
author | Arik Nemtsov <arik@wizery.com> | 2012-05-15 18:08:53 +0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 18:16:08 +0400 |
commit | 6e066921b3970232d5faadcdf33a92f43ec84334 (patch) | |
tree | 0b1db907ab990d4bfa1db50f91419216bc730f41 /drivers/net/wireless/ti/wl12xx/main.c | |
parent | 1ab0f212629462ae2600bb3523dc75b96e8544eb (diff) | |
download | linux-6e066921b3970232d5faadcdf33a92f43ec84334.tar.xz |
wlcore: fix dynamic_ps_timeout time regression
In patch d7b63b9fc7ee73e75a4c7fdb899 we have raised the dynamic
PS timeout to 200ms to improve user experience. Re-apply the change,
since it was reverted in the wlcore split.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl12xx/main.c')
-rw-r--r-- | drivers/net/wireless/ti/wl12xx/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wl12xx/main.c b/drivers/net/wireless/ti/wl12xx/main.c index 67974f6c635a..ba14acae1d59 100644 --- a/drivers/net/wireless/ti/wl12xx/main.c +++ b/drivers/net/wireless/ti/wl12xx/main.c @@ -238,7 +238,7 @@ static struct wlcore_conf wl12xx_conf = { .psm_entry_retries = 8, .psm_exit_retries = 16, .psm_entry_nullfunc_retries = 3, - .dynamic_ps_timeout = 40, + .dynamic_ps_timeout = 200, .forced_ps = false, .keep_alive_interval = 55000, .max_listen_interval = 20, |