Sfoglia il codice sorgente

qcacld-3.0: avoid filtring of DFS channel

avoid filtering of DFS channel when sta_sap_scc_on_dfs_chan enabled

Change-Id: I7ed7704aff5973835eb69a3ea1487b9dbd652d6b
CRs-Fixed: 3459177
Prasanna JS 2 anni fa
parent
commit
1a47922e9e

+ 2 - 3
components/cmn_services/policy_mgr/src/wlan_policy_mgr_pcl.c

@@ -629,9 +629,8 @@ static QDF_STATUS policy_mgr_modify_pcl_based_on_enabled_channels(
 		return status;
 	}
 
-	if (dfs_master_capable &&
-	    (sta_sap_scc_on_dfs_chnl == PM_STA_SAP_ON_DFS_MASTER_MODE_FLEX &&
-	     pm_ctx->cfg.go_force_scc == GO_FORCE_SCC_STRICT)) {
+	if (dfs_master_capable && sta_sap_scc_on_dfs_chnl &&
+	    pm_ctx->cfg.go_force_scc == GO_FORCE_SCC_STRICT) {
 		allow_go_scc_on_dfs_chn = true;
 	}