qcacld-3.0: Replace channel with freq in hdd_context

Replacing channel with freq in the following structures:

hdd_context: last_acs_channel_list -> last_acs_freq_list
sap_context: channelList -> freq_list
sap_acs_scan_complete_event: channellist -> freq_list

Change-Id: If04ba42831b5134952e0d71a18b207d0a6f3c5b2
CRs-Fixed: 2497615
This commit is contained in:
Min Liu
2019-07-26 14:49:30 +08:00
committad av nshrivas
förälder 81a5f427b2
incheckning 00956e8408
10 ändrade filer med 77 tillägg och 74 borttagningar

Visa fil

@@ -355,12 +355,12 @@ struct sap_ch_selected_s {
/**
* struct sap_acs_scan_complete_event - acs scan complete event
* @status: status of acs scan
* @channellist: acs scan channels
* @freq_list: acs scan channel frequency list
* @num_of_channels: number of channels
*/
struct sap_acs_scan_complete_event {
uint8_t status;
uint8_t *channellist;
uint32_t *freq_list;
uint8_t num_of_channels;
};