mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 16:43:08 +00:00
staging:vt6655:iowpa: Whitespace cleanups
Neatening only. git diff -w shows no differences. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
281c7462f1
commit
722bf5eef7
@ -37,11 +37,11 @@
|
||||
|
||||
//WPA related
|
||||
/*
|
||||
typedef enum { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP } wpa_alg;
|
||||
typedef enum { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,
|
||||
CIPHER_WEP104 } wpa_cipher;
|
||||
typedef enum { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,
|
||||
KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE } wpa_key_mgmt;
|
||||
typedef enum { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP } wpa_alg;
|
||||
typedef enum { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,
|
||||
CIPHER_WEP104 } wpa_cipher;
|
||||
typedef enum { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,
|
||||
KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE } wpa_key_mgmt;
|
||||
*/
|
||||
|
||||
enum {
|
||||
@ -54,7 +54,7 @@ enum {
|
||||
VIAWGET_SET_DROP_UNENCRYPT = 7,
|
||||
VIAWGET_SET_DEAUTHENTICATE = 8,
|
||||
VIAWGET_SET_ASSOCIATE = 9,
|
||||
VIAWGET_SET_DISASSOCIATE= 10
|
||||
VIAWGET_SET_DISASSOCIATE = 10
|
||||
};
|
||||
|
||||
|
||||
@ -88,27 +88,27 @@ struct viawget_wpa_param {
|
||||
} generic_elem;
|
||||
|
||||
struct {
|
||||
u8 bssid[6];
|
||||
u8 bssid[6];
|
||||
u8 ssid[32];
|
||||
u8 ssid_len;
|
||||
u8 *wpa_ie;
|
||||
u16 wpa_ie_len;
|
||||
int pairwise_suite;
|
||||
int group_suite;
|
||||
int key_mgmt_suite;
|
||||
int auth_alg;
|
||||
int mode;
|
||||
u8 *wpa_ie;
|
||||
u16 wpa_ie_len;
|
||||
int pairwise_suite;
|
||||
int group_suite;
|
||||
int key_mgmt_suite;
|
||||
int auth_alg;
|
||||
int mode;
|
||||
|
||||
} wpa_associate;
|
||||
|
||||
struct {
|
||||
int alg_name;
|
||||
u16 key_index;
|
||||
u16 set_tx;
|
||||
u8 *seq;
|
||||
u16 seq_len;
|
||||
u8 *key;
|
||||
u16 key_len;
|
||||
int alg_name;
|
||||
u16 key_index;
|
||||
u16 set_tx;
|
||||
u8 *seq;
|
||||
u16 seq_len;
|
||||
u8 *key;
|
||||
u16 key_len;
|
||||
} wpa_key;
|
||||
|
||||
struct {
|
||||
|
Loading…
Reference in New Issue
Block a user