|
@@ -3599,6 +3599,12 @@ struct reg_table_entry g_registry_table[] = {
|
|
|
CFG_STA_SAP_SCC_ON_DFS_CHAN_MIN,
|
|
|
CFG_STA_SAP_SCC_ON_DFS_CHAN_MAX),
|
|
|
|
|
|
+ REG_VARIABLE(CFG_STA_SAP_SCC_ON_LTE_COEX_CHAN, WLAN_PARAM_HexInteger,
|
|
|
+ struct hdd_config, sta_sap_scc_on_lte_coex_chan,
|
|
|
+ VAR_FLAGS_OPTIONAL | VAR_FLAGS_RANGE_CHECK_ASSUME_DEFAULT,
|
|
|
+ CFG_STA_SAP_SCC_ON_LTE_COEX_CHAN_DEFAULT,
|
|
|
+ CFG_STA_SAP_SCC_ON_LTE_COEX_CHAN_MIN,
|
|
|
+ CFG_STA_SAP_SCC_ON_LTE_COEX_CHAN_MAX),
|
|
|
|
|
|
#ifdef FEATURE_WLAN_SCAN_PNO
|
|
|
REG_VARIABLE(CFG_PNO_CHANNEL_PREDICTION_NAME, WLAN_PARAM_Integer,
|
|
@@ -6871,6 +6877,9 @@ void hdd_cfg_print(struct hdd_context *hdd_ctx)
|
|
|
hdd_debug("Name = [%s] value = [%u]",
|
|
|
CFG_STA_SAP_SCC_ON_DFS_CHAN,
|
|
|
hdd_ctx->config->sta_sap_scc_on_dfs_chan);
|
|
|
+ hdd_debug("Name = [%s] value = [%u]",
|
|
|
+ CFG_STA_SAP_SCC_ON_LTE_COEX_CHAN,
|
|
|
+ hdd_ctx->config->sta_sap_scc_on_lte_coex_chan);
|
|
|
#ifdef FEATURE_WLAN_SCAN_PNO
|
|
|
hdd_debug("Name = [%s] Value = [%u]",
|
|
|
CFG_PNO_CHANNEL_PREDICTION_NAME,
|
|
@@ -8427,6 +8436,8 @@ QDF_STATUS hdd_set_policy_mgr_user_cfg(struct hdd_context *hdd_ctx)
|
|
|
hdd_ctx->config->sta_sap_scc_on_dfs_chan;
|
|
|
user_cfg->channel_select_logic_conc =
|
|
|
hdd_ctx->config->channel_select_logic_conc;
|
|
|
+ user_cfg->sta_sap_scc_on_lte_coex_chan =
|
|
|
+ hdd_ctx->config->sta_sap_scc_on_lte_coex_chan;
|
|
|
status = policy_mgr_set_user_cfg(hdd_ctx->hdd_psoc, user_cfg);
|
|
|
qdf_mem_free(user_cfg);
|
|
|
|