From cb331d92d963675e6812e02296c8498ab03fca2e Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Thu, 22 Sep 2016 12:43:49 -0700 Subject: qcacld-3.0: Converge gScanAgingTime & gScanResultAgeCount There is a desire to remove unnecessary items from the default version of WCNSS_qcom_cfg.ini that is shipped to customers. Currently the default WCNSS_qcom_cfg.ini contains the following entries: gScanAgingTime=30 gScanResultAgeCount=1 The associated default values within the driver are: define CFG_SCAN_AGING_PARAM_DEFAULT (60) define CFG_SCAN_RESULT_AGE_COUNT_DEFAULT (3) These are obviously divergent and should be converged. Since all recent testing has used the default WCNSS_qcom_cfg.ini, converge on the values defined there. Change-Id: I4b75590c44a94b9b95fbd47cf147137d4f695e51 CRs-Fixed: 1070145 --- core/hdd/inc/wlan_hdd_cfg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h index 1af039b70fe4..65640a50fa28 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -217,7 +217,7 @@ typedef enum { #define CFG_SCAN_RESULT_AGE_COUNT_NAME "gScanResultAgeCount" #define CFG_SCAN_RESULT_AGE_COUNT_MIN (1) #define CFG_SCAN_RESULT_AGE_COUNT_MAX (100) -#define CFG_SCAN_RESULT_AGE_COUNT_DEFAULT (3) +#define CFG_SCAN_RESULT_AGE_COUNT_DEFAULT (1) /* All in seconds */ /* Not Connect, No Power Save */ @@ -1880,7 +1880,7 @@ typedef enum { #define CFG_SCAN_AGING_PARAM_NAME "gScanAgingTime" #define CFG_SCAN_AGING_PARAM_MIN (0) #define CFG_SCAN_AGING_PARAM_MAX (200) -#define CFG_SCAN_AGING_PARAM_DEFAULT (60) +#define CFG_SCAN_AGING_PARAM_DEFAULT (30) /* Config Param to enable the txLdpc capability * 0 - disable -- cgit v1.2.3