Browse Source

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
Yeshwanth Sriram Guntuka 6 years ago
parent
commit
6125b515d4
1 changed files with 5 additions and 5 deletions
  1. 5 5
      components/mlme/dispatcher/inc/cfg_mlme_powersave.h

+ 5 - 5
components/mlme/dispatcher/inc/cfg_mlme_powersave.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -72,8 +72,8 @@
  * <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
  *
@@ -88,8 +88,8 @@
 #define CFG_AUTO_BMPS_ENABLE_TIMER CFG_INI_UINT( \
 		"gAutoBmpsTimerValue", \
 		0, \
-		120, \
-		90, \
+		1000, \
+		600, \
 		CFG_VALUE_OR_DEFAULT, \
 		"Auto BMPS Timer value")