summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrishna Kumaar Natarajan <kknatara@codeaurora.org>2016-08-02 10:41:53 -0700
committerVishwajith Upendra <vishwaji@codeaurora.org>2016-08-04 12:35:37 -0700
commitcc077c22644895dbd6c498cad55050db2fe217f2 (patch)
tree0961c504d0cbae60f7a4f17360c3abed58380853
parentc1fa17d047e261ca281b76748594f542c4f46039 (diff)
qcacld-3.0: Update default INI config value for rm_capability
Update default INI config value for rm_capability to indicate support for LCI capability. Change-Id: Id5303ffc4004e58f6302f8692a15b8040231c3a4 CRs-Fixed: 1049333
-rw-r--r--core/hdd/inc/wlan_hdd_cfg.h2
-rw-r--r--core/hdd/src/wlan_hdd_cfg.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h
index 04ff01663221..788827a0a760 100644
--- a/core/hdd/inc/wlan_hdd_cfg.h
+++ b/core/hdd/inc/wlan_hdd_cfg.h
@@ -848,7 +848,7 @@ typedef enum {
* Comma is used as a separator for each byte.
*/
#define CFG_RM_CAPABILITY_NAME "rm_capability"
-#define CFG_RM_CAPABILITY_DEFAULT "73,00,6D,00,04"
+#define CFG_RM_CAPABILITY_DEFAULT "73,10,6D,00,04"
#define CFG_QOS_IMPLICIT_SETUP_ENABLED_NAME "ImplicitQosIsEnabled"
#define CFG_QOS_IMPLICIT_SETUP_ENABLED_MIN (0)
diff --git a/core/hdd/src/wlan_hdd_cfg.c b/core/hdd/src/wlan_hdd_cfg.c
index 0df166a95454..4647ae303e3a 100644
--- a/core/hdd/src/wlan_hdd_cfg.c
+++ b/core/hdd/src/wlan_hdd_cfg.c
@@ -5654,6 +5654,9 @@ void hdd_cfg_print(hdd_context_t *pHddCtx)
CFG_ADAPT_DWELL_WIFI_THRESH_NAME,
pHddCtx->config->adapt_dwell_wifi_act_threshold);
hdd_ndp_print_ini_config(pHddCtx);
+ hdd_info("Name = [%s] Value = [%s]",
+ CFG_RM_CAPABILITY_NAME,
+ pHddCtx->config->rm_capability);
}