qcacmn: Add function definition when CONFIG_BAND_6GHZ not defined

Functions (reg_get_min_max_bw_on_given_pwr_mode/
reg_get_chan_state_on_given_pwr_mode) were defined under macro
CONFIG_BAND_6GHZ. Add definition for above functions when
CONFIG_BAND_6GHZ not defined. When CONFIG_BAND_6GHZ is not defined
a channel search is only for 5GHz or 2.4GHz channel. Therefore,
the search is restricted to only the current channel.

Change-Id: Iaae6f362dd81a74c8d92756d507dd16b0dc4c3af
CRs-Fixed: 3205342
Este commit está contenido en:
divraj
2022-05-25 12:32:19 +05:30
cometido por Madan Koyyalamudi
padre 42b53b5b2c
commit 4514b2ae95

Ver fichero

@@ -8604,6 +8604,31 @@ reg_is_freq_idx_enabled_on_given_pwr_mode(struct wlan_regulatory_pdev_priv_obj
return reg_is_freq_idx_enabled_on_cur_chan_list(pdev_priv_obj,
freq_idx);
}
static inline QDF_STATUS
reg_get_min_max_bw_on_given_pwr_mode(struct wlan_regulatory_pdev_priv_obj
*pdev_priv_obj,
enum channel_enum freq_idx,
enum supported_6g_pwr_types
in_6g_pwr_mode,
uint16_t *min_bw,
uint16_t *max_bw)
{
return reg_get_min_max_bw_on_cur_chan_list(pdev_priv_obj,
freq_idx,
min_bw, max_bw);
}
static inline enum channel_state
reg_get_chan_state_on_given_pwr_mode(struct wlan_regulatory_pdev_priv_obj
*pdev_priv_obj,
enum channel_enum freq_idx,
enum supported_6g_pwr_types
in_6g_pwr_mode)
{
return reg_get_chan_state_on_cur_chan_list(pdev_priv_obj,
freq_idx);
}
#endif /* CONFIG_BAND_6GHZ */
bool