diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2016-09-22 12:43:49 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-09-23 19:20:45 -0700 |
| commit | cb331d92d963675e6812e02296c8498ab03fca2e (patch) | |
| tree | 867c593d270fa66255f9a87502b4db2ec321d38b | |
| parent | 5e2f8f234501ffd37bb8510e0a18c5d938aa7ac3 (diff) | |
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
| -rw-r--r-- | core/hdd/inc/wlan_hdd_cfg.h | 4 |
1 files 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 |
