qcacmn: Use freq instead of channel number to avoid collision

To avoid IEEE channel number space collision,
use freq in structure dfs_acs_info.

Change-Id: I48813d12819f03495f196e634e9fcb422105f304
CRs-Fixed: 2555897
This commit is contained in:
gaurank kathpalia
2019-10-30 15:19:47 +05:30
committed by nshrivas
vanhempi 367c36003b
commit d68b2f4f19
2 muutettua tiedostoa jossa 8 lisäystä ja 8 poistoa

Näytä tiedosto

@@ -56,12 +56,12 @@ struct radar_found_info {
/**
* struct dfs_acs_info - acs info, ch range
* @acs_mode: to enable/disable acs 1/0.
* @channel_list: channel list in acs config
* @chan_freq_list: channel frequency list
* @num_of_channel: number of channel in ACS channel list
*/
struct dfs_acs_info {
uint8_t acs_mode;
uint8_t *channel_list;
uint32_t *chan_freq_list;
uint8_t num_of_channel;
};