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: I6e7dad199f619626fc2d06b2a6e1669ececd1c07
CRs-Fixed: 665295, 669811
diff --git a/CORE/MAC/src/cfg/cfgUtil/cfg.txt b/CORE/MAC/src/cfg/cfgUtil/cfg.txt
index e8f6a20..d035d82 100644
--- a/CORE/MAC/src/cfg/cfgUtil/cfg.txt
+++ b/CORE/MAC/src/cfg/cfgUtil/cfg.txt
@@ -4840,10 +4840,10 @@
 *
 
 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
 
@@ -4852,10 +4852,10 @@
 *
 
 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 507b85a..0637816 100644
--- a/firmware_bin/WCNSS_cfg.dat
+++ b/firmware_bin/WCNSS_cfg.dat
Binary files differ