summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaidiReddy Yenuga <c_saidir@qti.qualcomm.com>2016-08-04 16:44:27 +0530
committerAnjaneedevi Kapparapu <akappa@codeaurora.org>2016-08-09 19:55:39 +0530
commite73fde3ca159709ce85947fbb0bfa670e26bfe8a (patch)
tree5e9d9e6eb29dacf049514fa02e4c26d9be7d1f05
parent57dfe33b33706229348de2078c947831bb51c8c0 (diff)
qcacld-2.0: Modify CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT to 30
Currently CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT is 0 in code and in ini file it is 30. If this parameter is undefined in ini file, then this KEEP alive feature gets disabled. Change CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT value to 30 in code. CRs-fixed: 1049206 Change-Id: Iff0933842b13482e9949473a4c8a48bf83230cc1
-rw-r--r--CORE/HDD/inc/wlan_hdd_cfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/HDD/inc/wlan_hdd_cfg.h b/CORE/HDD/inc/wlan_hdd_cfg.h
index e09c4977833b..f73cc9171d22 100644
--- a/CORE/HDD/inc/wlan_hdd_cfg.h
+++ b/CORE/HDD/inc/wlan_hdd_cfg.h
@@ -730,7 +730,7 @@ enum
#define CFG_INFRA_STA_KEEP_ALIVE_PERIOD_NAME "gStaKeepAlivePeriod"
#define CFG_INFRA_STA_KEEP_ALIVE_PERIOD_MIN ( 0 )
#define CFG_INFRA_STA_KEEP_ALIVE_PERIOD_MAX ( 65535)
-#define CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT ( 0 )
+#define CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT ( 30 )
//WMM configuration
#define CFG_QOS_WMM_MODE_NAME "WmmIsEnabled"