qca-wifi: Place dfs_configure_deschan_for_precac under macro

The API dfs_configure_deschan_for_precac when moved to dfs_precac_forest.h
is not placed under the macro WLAN_DFS_PRECAC_AUTO_CHAN_SUPPORT and the
macro CONFIG_CHAN_FREQ_API.

Place the API under the macro to resolve the issue in minent profile.

CRs-Fixed: 2848724
Change-Id: I94856084c4c55e61592467fa7195ae9bc7e5431f
Cette révision appartient à :
Vijay Krishnan
2021-01-07 10:30:31 +05:30
Parent 0179c38036
révision e29795cd4b

Voir le fichier

@@ -132,6 +132,8 @@ struct precac_tree_offset_for_different_bw default_offset = {0, 0};
#define MAX_PREFIX_CHAR 28
#ifdef WLAN_DFS_PRECAC_AUTO_CHAN_SUPPORT
#ifdef CONFIG_CHAN_FREQ_API
/**
* dfs_configure_deschan_for_precac() - API to prioritize user configured
* channel for preCAC.
@@ -140,6 +142,14 @@ struct precac_tree_offset_for_different_bw default_offset = {0, 0};
* Return: frequency of type qdf_freq_t if configured, else 0.
*/
qdf_freq_t dfs_configure_deschan_for_precac(struct wlan_dfs *dfs);
#endif
#else
static inline qdf_freq_t
dfs_configure_deschan_for_precac(struct wlan_dfs *dfs)
{
return 0;
}
#endif
/**
* dfs_is_pcac_required_for_freq() - Find if given frequency is preCAC required.