diff options
| author | Yeshwanth Sriram Guntuka <ysriramg@codeaurora.org> | 2019-05-31 16:21:19 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-06-11 03:01:52 -0700 |
| commit | 9d4848c3ed7d389ee5a6ef2c3549bf8f53baec1d (patch) | |
| tree | 086793058471501223734976058869c4011d6c90 | |
| parent | 481d50101df134c3628363e829ef8ecb54e79778 (diff) | |
qcacld-3.0: Increase default value of bmps timer to 600secs
CBF report is not sent as response to NDPA frames
sent by AP when STA goes to powersave. This is
resulting in VHT-5.2.63A cert test case failure,
where pass criteria is to check the last CBF frame
from STA.
Fix is to increase default value of bmps timer to
600secs.
Change-Id: Ibca5fe0af0be22f0bef463a5b4d11d617ac4391b
CRs-Fixed: 2412177
| -rw-r--r-- | core/hdd/inc/wlan_hdd_cfg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h index 5e1f974b42dc..edcd032402da 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -11368,8 +11368,8 @@ enum restart_beaconing_on_ch_avoid_rule { * <ini> * gAutoBmpsTimerValue - Set Auto BMPS Timer value * @Min: 0 - * @Max: 120 - * @Default: 90 + * @Max: 1000 + * @Default: 600 * * This ini is used to set Auto BMPS Timer value in seconds * @@ -11383,8 +11383,8 @@ 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 (90) +#define CFG_AUTO_PS_ENABLE_TIMER_MAX (1000) +#define CFG_AUTO_PS_ENABLE_TIMER_DEFAULT (600) #ifdef WLAN_ICMP_DISABLE_PS /* |
