diff options
| author | Pragaspathi Thilagaraj <tpragasp@codeaurora.org> | 2018-10-01 15:44:06 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-10-02 04:49:36 -0700 |
| commit | fd17bc556785686578249876727e875bd87e5038 (patch) | |
| tree | 17f4f064a6427edc99089b972f8d73f5b6bdf808 | |
| parent | 63f1fab68a748fffd0a0a921b639afd8776c0405 (diff) | |
qcacld-3.0: Fix default ini value of gAutoBmpsTimerValue
When BMPS is already enabled and we have entered the WOW mode,
we start detecting the AP behavior , where the AP
continuously sets the TIM bit and because of which we don’t go
to PM1 mode after waking UP.
With the current ini value, we don't go to sleep for 30 secs,
which should be updated to 90secs.
Change-Id: I3b551011e90761f1dc13197a4795972f495853a6
CRs-Fixed: 2306266
| -rw-r--r-- | core/hdd/inc/wlan_hdd_cfg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h index e24c68f29eda..19180ba1e664 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -11280,7 +11280,7 @@ enum restart_beaconing_on_ch_avoid_rule { * gAutoBmpsTimerValue - Set Auto BMPS Timer value * @Min: 0 * @Max: 120 - * @Default: 30 + * @Default: 90 * * This ini is used to set Auto BMPS Timer value in seconds * @@ -11295,7 +11295,7 @@ enum restart_beaconing_on_ch_avoid_rule { #define CFG_AUTO_PS_ENABLE_TIMER_NAME "gAutoBmpsTimerValue" #define CFG_AUTO_PS_ENABLE_TIMER_MIN (0) #define CFG_AUTO_PS_ENABLE_TIMER_MAX (120) -#define CFG_AUTO_PS_ENABLE_TIMER_DEFAULT (30) +#define CFG_AUTO_PS_ENABLE_TIMER_DEFAULT (90) #ifdef WLAN_ICMP_DISABLE_PS /* |
