qcacmn: Replace different struct of SISD with struct wlan_ssid

There are different version of SSID structure used in driver, replace
them with struct wlan_ssid.

Also move struct element_info from scan module to generic structures.

Change-Id: Ia32f82d943980c23b4ff478f5a06c5c053036de5
CRs-Fixed: 2721872
This commit is contained in:
Abhishek Singh
2020-06-30 13:13:24 +05:30
committed by nshrivas
parent bd70ec6350
commit e2097ddb09
11 changed files with 22 additions and 43 deletions

View File

@@ -687,16 +687,6 @@ struct oem_data {
};
#endif
/**
* struct mac_ssid - mac ssid structure
* @length:
* @mac_ssid[WMI_MAC_MAX_SSID_LENGTH]:
*/
struct mac_ssid {
uint8_t length;
uint8_t mac_ssid[WMI_MAC_MAX_SSID_LENGTH];
} qdf_packed;
/**
* enum nss_chains_band_info - Band info for dynamic nss, chains change feature
* @NSS_CHAINS_BAND_2GHZ: 2.4Ghz band
@@ -1760,7 +1750,7 @@ struct roam_offload_scan_params {
* @auth_bit_field: auth bit field for matching WPA IE
*/
struct wifi_epno_network_params {
struct mac_ssid ssid;
struct wlan_ssid ssid;
int8_t rssi_threshold;
uint8_t flags;
uint8_t auth_bit_field;