mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 15:49:42 -04:00
staging: wilc1000: rename enum AUTHTYPE to use lowercase
Cleanup patch to rename enum AUTHTYPE to lowercase. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
90824b7cdf
commit
ecba6b7477
@@ -26,7 +26,7 @@ struct host_if_wep_attr {
|
||||
u8 key_len;
|
||||
u8 index;
|
||||
u8 mode;
|
||||
enum AUTHTYPE auth_type;
|
||||
enum authtype auth_type;
|
||||
};
|
||||
|
||||
union host_if_key_attr {
|
||||
@@ -62,7 +62,7 @@ struct connect_attr {
|
||||
u8 security;
|
||||
wilc_connect_result result;
|
||||
void *arg;
|
||||
enum AUTHTYPE auth_type;
|
||||
enum authtype auth_type;
|
||||
u8 ch;
|
||||
void *params;
|
||||
};
|
||||
@@ -2632,7 +2632,7 @@ int wilc_add_wep_key_bss_sta(struct wilc_vif *vif, const u8 *key, u8 len,
|
||||
}
|
||||
|
||||
int wilc_add_wep_key_bss_ap(struct wilc_vif *vif, const u8 *key, u8 len,
|
||||
u8 index, u8 mode, enum AUTHTYPE auth_type)
|
||||
u8 index, u8 mode, enum authtype auth_type)
|
||||
{
|
||||
int result;
|
||||
struct host_if_msg *msg;
|
||||
@@ -2876,7 +2876,7 @@ int wilc_get_mac_address(struct wilc_vif *vif, u8 *mac_addr)
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
|
||||
size_t ssid_len, const u8 *ies, size_t ies_len,
|
||||
wilc_connect_result connect_result, void *user_arg,
|
||||
u8 security, enum AUTHTYPE auth_type,
|
||||
u8 security, enum authtype auth_type,
|
||||
u8 channel, void *join_params)
|
||||
{
|
||||
int result = 0;
|
||||
|
||||
@@ -207,7 +207,7 @@ struct user_conn_req {
|
||||
u8 *bssid;
|
||||
u8 *ssid;
|
||||
u8 security;
|
||||
enum AUTHTYPE auth_type;
|
||||
enum authtype auth_type;
|
||||
size_t ssid_len;
|
||||
u8 *ies;
|
||||
size_t ies_len;
|
||||
@@ -298,7 +298,7 @@ int wilc_set_wep_default_keyid(struct wilc_vif *vif, u8 index);
|
||||
int wilc_add_wep_key_bss_sta(struct wilc_vif *vif, const u8 *key, u8 len,
|
||||
u8 index);
|
||||
int wilc_add_wep_key_bss_ap(struct wilc_vif *vif, const u8 *key, u8 len,
|
||||
u8 index, u8 mode, enum AUTHTYPE auth_type);
|
||||
u8 index, u8 mode, enum authtype auth_type);
|
||||
int wilc_add_ptk(struct wilc_vif *vif, const u8 *ptk, u8 ptk_key_len,
|
||||
const u8 *mac_addr, const u8 *rx_mic, const u8 *tx_mic,
|
||||
u8 mode, u8 cipher_mode, u8 index);
|
||||
@@ -314,7 +314,7 @@ int wilc_get_mac_address(struct wilc_vif *vif, u8 *mac_addr);
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
|
||||
size_t ssid_len, const u8 *ies, size_t ies_len,
|
||||
wilc_connect_result connect_result, void *user_arg,
|
||||
u8 security, enum AUTHTYPE auth_type,
|
||||
u8 security, enum authtype auth_type,
|
||||
u8 channel, void *join_params);
|
||||
int wilc_disconnect(struct wilc_vif *vif, u16 reason_code);
|
||||
int wilc_set_mac_chnl_num(struct wilc_vif *vif, u8 channel);
|
||||
|
||||
@@ -678,7 +678,7 @@ static int connect(struct wiphy *wiphy, struct net_device *dev,
|
||||
u32 i;
|
||||
u32 sel_bssi_idx = UINT_MAX;
|
||||
u8 security = NO_ENCRYPT;
|
||||
enum AUTHTYPE auth_type = ANY;
|
||||
enum authtype auth_type = ANY;
|
||||
u32 cipher_group;
|
||||
struct wilc_priv *priv;
|
||||
struct host_if_drv *wfi_drv;
|
||||
|
||||
@@ -131,7 +131,7 @@ enum {
|
||||
WPA2_AES_TKIP = 0x71, /* Aes or Tkip */
|
||||
};
|
||||
|
||||
enum AUTHTYPE {
|
||||
enum authtype {
|
||||
OPEN_SYSTEM = 1,
|
||||
SHARED_KEY = 2,
|
||||
ANY = 3,
|
||||
|
||||
Reference in New Issue
Block a user