Sfoglia il codice sorgente

qcacld-3.0: Do not call wlan_reg_legacy_chan_to_freq for freq

sap_ctx->csr_roamProfile.op_freq is already channel frequency.
Do not call wlan_reg_legacy_chan_to_freq for it.

Change-Id: I20ce4eb8852087175c0fae4a7a9dd5e3168e1f24
CRs-Fixed: 2643218
bings 5 anni fa
parent
commit
23c2312e08
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. 1 2
      core/sap/src/sap_fsm.c

+ 1 - 2
core/sap/src/sap_fsm.c

@@ -1902,8 +1902,7 @@ static QDF_STATUS sap_cac_start_notify(mac_handle_t mac_handle)
 		    (false == sap_context->isCacStartNotified)) {
 			/* Don't start CAC for non-dfs channel, its violation */
 			profile = &sap_context->csr_roamProfile;
-			ch_freq = wlan_reg_legacy_chan_to_freq(mac->pdev,
-						profile->op_freq);
+			ch_freq = profile->op_freq;
 			if (!wlan_reg_is_dfs_for_freq(mac->pdev,
 						      ch_freq))
 				continue;