]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wilc1000: rename enum AUTHTYPE to use lowercase
authorAjay Singh <ajay.kathat@microchip.com>
Wed, 18 Jul 2018 22:45:04 +0000 (04:15 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 21 Jul 2018 07:04:47 +0000 (09:04 +0200)
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>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
drivers/staging/wilc1000/wilc_wlan_if.h

index a5c0ac5a89c4fe97c8185bf3085aae29291bc498..0ffe205dad7525ae939a2db7c78bff98ce1999f8 100644 (file)
@@ -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;
index 7f3e48cc009eafb6880685fb9b211b2bb3f0c979..79166a5fb96d1134e5bf0ebf60e3535885c3f52c 100644 (file)
@@ -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);
index 73606c3d840f701578c93406769b85c3e45cde07..8f1c59507962850dde3e431011c036ab33ad5d55 100644 (file)
@@ -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;
index b82e149ba2f36e2a3d5ebe72f08e7faed45f7c72..73b57fb623b6d56313e4107c08241130fd66ff83 100644 (file)
@@ -131,7 +131,7 @@ enum {
        WPA2_AES_TKIP           = 0x71, /* Aes or Tkip */
 };
 
-enum AUTHTYPE {
+enum authtype {
        OPEN_SYSTEM             = 1,
        SHARED_KEY              = 2,
        ANY                     = 3,