wlan: Add check to validate channel in SAP channel selection

If STA-SAP SCC is enabled and STA is connected on indoor
channel, SAP should not be allowed to start on that channel.
Add check to validate the channel on which STA is
operating.

Change-Id: I48673ded66d00a8b205f1c60defaf4a161ef4289
CRs-Fixed: 2170617
diff --git a/CORE/HDD/src/wlan_hdd_cfg.c b/CORE/HDD/src/wlan_hdd_cfg.c
index 52c1a2e..3645fda 100644
--- a/CORE/HDD/src/wlan_hdd_cfg.c
+++ b/CORE/HDD/src/wlan_hdd_cfg.c
@@ -6666,6 +6666,8 @@
 
    smeConfig->csrConfig.sta_sap_scc_on_dfs_chan =
            pHddCtx->cfg_ini->sta_sap_scc_on_dfs_chan;
+   smeConfig->csrConfig.force_scc_with_ecsa =
+           pHddCtx->cfg_ini->force_scc_with_ecsa;
 
    halStatus = sme_UpdateConfig( pHddCtx->hHal, smeConfig);
    if ( !HAL_STATUS_SUCCESS( halStatus ) )