summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrunal soni <ksoni@qca.qualcomm.com>2014-06-12 15:29:18 -0700
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-06-15 00:39:52 +0530
commit4381f6be469cbc4cb2a23bfe605d51a3d60c38fc (patch)
tree0dae97b70638fbe088e5ffd654a48a49826e2be5
parent18cd2ff594f99af37280f2d054d696f3b745b9ac (diff)
wlan: Cannot change PMF SA Query configuration
The PMF SA Query configuration parameters "maximum retries" and "retry interval" cannot be changed by setting to new values in the WCNSS_qcom_cfg.ini file. The problem is in the definition of these parameters in the configuration database. They were defined as read-only, when they should have been defined as read-write. Because of this issue, the driver always used the default values for the parameters instead of the new values. Change-Id: I99307af9ca8843e24c65d1f9d2035af6ddeb2de0 CRs-Fixed: 679585
-rw-r--r--CORE/MAC/src/cfg/cfgUtil/cfg.txt8
-rwxr-xr-xfirmware_bin/WCNSS_cfg.datbin10810 -> 10810 bytes
2 files changed, 4 insertions, 4 deletions
diff --git a/CORE/MAC/src/cfg/cfgUtil/cfg.txt b/CORE/MAC/src/cfg/cfgUtil/cfg.txt
index 4d1f67fa14e1..a33488c8b445 100644
--- a/CORE/MAC/src/cfg/cfgUtil/cfg.txt
+++ b/CORE/MAC/src/cfg/cfgUtil/cfg.txt
@@ -4538,10 +4538,10 @@ LIM
*
WNI_CFG_PMF_SA_QUERY_MAX_RETRIES I 4 1
-V RO NP RESTART
+V RW NP RESTART
NONE
0 20 5
-V RO NP RESTART
+V RW NP RESTART
NONE
0 20 5
@@ -4550,10 +4550,10 @@ NONE
*
WNI_CFG_PMF_SA_QUERY_RETRY_INTERVAL I 4 1
-V RO NP RESTART
+V RW NP RESTART
NONE
0 2000 200
-V RO NP RESTART
+V RW NP RESTART
NONE
0 2000 200
diff --git a/firmware_bin/WCNSS_cfg.dat b/firmware_bin/WCNSS_cfg.dat
index 32d441117674..67e6efdcf1bf 100755
--- a/firmware_bin/WCNSS_cfg.dat
+++ b/firmware_bin/WCNSS_cfg.dat
Binary files differ