qcacld-3.0: Use wlan_reg_legacy_chan_to_freq for conversion

Use wlan_reg_legacy_chan_to_freq api for channel to
frequency conversion instead of wlan_reg_chan_to_freq.

Change-Id: I06a2638a1e402dc6a750c672ed803e8dbfa254fc
CRs-Fixed: 2853575
This commit is contained in:
sheenam monga
2021-01-20 16:11:02 +05:30
committed by snandini
parent 1f57670f03
commit 07ecaebeb7
7 changed files with 25 additions and 27 deletions

View File

@@ -159,7 +159,7 @@ static uint32_t ucfg_mlme_convert_power_cfg_chan_to_freq(
mlme_legacy_debug("max_length %d length %zu", max_length, length);
while ((rem_length >= 3) &&
(copied_length <= (max_length - (sizeof(struct pwr_channel_info))))) {
pwr_cfg_data[i].first_freq = wlan_reg_chan_to_freq(
pwr_cfg_data[i].first_freq = wlan_reg_legacy_chan_to_freq(
pdev,
power_chan_data[count++]);
pwr_cfg_data[i].num_chan = power_chan_data[count++];