diff options
author | Dan Williams <dcbw@redhat.com> | 2007-05-10 22:51:28 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-05-11 14:54:52 -0400 |
commit | 51b0c9d09d0a889a232605e71555e390b3b110fb (patch) | |
tree | 204f0d5eab138d5af6f0e044261220a361ed851a /drivers/net/wireless/libertas/scan.h | |
parent | 1f8a6b658a943b4f04a1fc7b3a420360202c86cd (diff) |
[PATCH] libertas: remove WPA_SUPPLICANT structure
Start to normalize bss_descriptor with ieee80211_network so we can
eventually replace bss_descriptor more easily.
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/scan.h')
-rw-r--r-- | drivers/net/wireless/libertas/scan.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/wireless/libertas/scan.h b/drivers/net/wireless/libertas/scan.h index d93aa7fa44fd..1a8756edfeb5 100644 --- a/drivers/net/wireless/libertas/scan.h +++ b/drivers/net/wireless/libertas/scan.h | |||
@@ -10,6 +10,7 @@ | |||
10 | #ifndef _WLAN_SCAN_H | 10 | #ifndef _WLAN_SCAN_H |
11 | #define _WLAN_SCAN_H | 11 | #define _WLAN_SCAN_H |
12 | 12 | ||
13 | #include <net/ieee80211.h> | ||
13 | #include "hostcmd.h" | 14 | #include "hostcmd.h" |
14 | 15 | ||
15 | /** | 16 | /** |
@@ -170,9 +171,10 @@ struct bss_descriptor { | |||
170 | 171 | ||
171 | struct ieeetypes_countryinfofullset countryinfo; | 172 | struct ieeetypes_countryinfofullset countryinfo; |
172 | 173 | ||
173 | struct WPA_SUPPLICANT wpa_supplicant; | 174 | u8 wpa_ie[MAX_WPA_IE_LEN]; |
174 | struct WPA_SUPPLICANT wpa2_supplicant; | 175 | size_t wpa_ie_len; |
175 | 176 | u8 rsn_ie[MAX_WPA_IE_LEN]; | |
177 | size_t rsn_ie_len; | ||
176 | }; | 178 | }; |
177 | 179 | ||
178 | extern int libertas_SSID_cmp(struct WLAN_802_11_SSID *ssid1, | 180 | extern int libertas_SSID_cmp(struct WLAN_802_11_SSID *ssid1, |