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
This commit is contained in:
Krishna Kumaar Natarajan
2016-08-02 10:41:53 -07:00
committed by Vishwajith Upendra
parent c1fa17d047
commit cc077c2264
2 changed files with 4 additions and 1 deletions

View File

@@ -848,7 +848,7 @@ typedef enum {
* Comma is used as a separator for each byte. * Comma is used as a separator for each byte.
*/ */
#define CFG_RM_CAPABILITY_NAME "rm_capability" #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_NAME "ImplicitQosIsEnabled"
#define CFG_QOS_IMPLICIT_SETUP_ENABLED_MIN (0) #define CFG_QOS_IMPLICIT_SETUP_ENABLED_MIN (0)

View File

@@ -5654,6 +5654,9 @@ void hdd_cfg_print(hdd_context_t *pHddCtx)
CFG_ADAPT_DWELL_WIFI_THRESH_NAME, CFG_ADAPT_DWELL_WIFI_THRESH_NAME,
pHddCtx->config->adapt_dwell_wifi_act_threshold); pHddCtx->config->adapt_dwell_wifi_act_threshold);
hdd_ndp_print_ini_config(pHddCtx); hdd_ndp_print_ini_config(pHddCtx);
hdd_info("Name = [%s] Value = [%s]",
CFG_RM_CAPABILITY_NAME,
pHddCtx->config->rm_capability);
} }