diff options
| author | SaidiReddy Yenuga <saidir@codeaurora.org> | 2016-09-02 18:16:48 +0530 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-10-25 04:07:06 -0700 |
| commit | deaa781b63a030f04fc1368fa387eb0eafdab609 (patch) | |
| tree | 566b175838031fb0368dd040511a8219029155ed | |
| parent | 1520e4374d398e7067eb397f8c0319c455cdbe9d (diff) | |
qcacld-3.0: Modify CFG_INFRA_STA_KEEP_ALIVE_PERIOD_DEFAULT to 30
propagation from qcacld-2.0 to qcacld-3.0
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.h | 2 |
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 63b2b0f5c05a..9ad137ddbba2 100644 --- a/core/hdd/inc/wlan_hdd_cfg.h +++ b/core/hdd/inc/wlan_hdd_cfg.h @@ -582,7 +582,7 @@ typedef 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" |
