staging: wilc1000: remove typedef from AUTHTYPE_T
authorLeo Kim <leo.kim@atmel.com>
Mon, 5 Oct 2015 06:25:39 +0000 (15:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:56:03 +0000 (10:56 +0100)
This patch removes typedef from the enum AUTHTYPE_T.
And, rename it to AUTHTYPE.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.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 1986271a3f2dc0f5ac4d19c3772c2193b296075f..38f1f5d0bdb8a113868a369ebc83bf4170a028ca 100644 (file)
@@ -111,7 +111,7 @@ typedef struct _tstrHostIFwepAttr {
        u8 u8WepKeylen;
        u8 u8Wepidx;
        u8 u8mode;
-       AUTHTYPE_T tenuAuth_type;
+       enum AUTHTYPE tenuAuth_type;
 
 } tstrHostIFwepAttr;
 
@@ -191,7 +191,7 @@ struct connect_attr {
        u8 u8security;
        wilc_connect_result pfConnectResult;
        void *pvUserArg;
-       AUTHTYPE_T tenuAuth_type;
+       enum AUTHTYPE tenuAuth_type;
        u8 u8channel;
        void *pJoinParams;
 };
@@ -4455,7 +4455,7 @@ s32 host_int_add_wep_key_bss_sta(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey,
  *  @date              28 FEB 2013
  *  @version           1.0
  */
-s32 host_int_add_wep_key_bss_ap(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, AUTHTYPE_T tenuAuth_type)
+s32 host_int_add_wep_key_bss_ap(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type)
 {
 
        s32 s32Error = 0;
@@ -5000,7 +5000,7 @@ s32 host_int_set_join_req(tstrWILC_WFIDrv *hWFIDrv, u8 *pu8bssid,
                                  const u8 *pu8ssid, size_t ssidLen,
                                  const u8 *pu8IEs, size_t IEsLen,
                                  wilc_connect_result pfConnectResult, void *pvUserArg,
-                                 u8 u8security, AUTHTYPE_T tenuAuth_type,
+                                 u8 u8security, enum AUTHTYPE tenuAuth_type,
                                  u8 u8channel,
                                  void *pJoinParams)
 {
index bed8f98019fbcbb2b7f858c293e25647756470f3..779ff99aca2bc924a5eb03ffc6ed155ca742b1f2 100644 (file)
@@ -240,7 +240,7 @@ typedef struct {
        u8 *pu8bssid;
        u8 *pu8ssid;
        u8 u8security;
-       AUTHTYPE_T tenuAuth_type;
+       enum AUTHTYPE tenuAuth_type;
        size_t ssidLen;
        u8 *pu8ConnReqIEs;
        size_t ConnReqIEsLen;
@@ -455,7 +455,7 @@ s32 host_int_add_wep_key_bss_sta(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey,
  *  @date              28 Feb 2013
  *  @version           1.0
  */
-s32 host_int_add_wep_key_bss_ap(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, AUTHTYPE_T tenuAuth_type);
+s32 host_int_add_wep_key_bss_ap(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type);
 
 /**
  *  @brief              adds ptk Key
@@ -699,7 +699,7 @@ s32 host_int_set_join_req(tstrWILC_WFIDrv *hWFIDrv, u8 *pu8bssid,
                                  const u8 *pu8ssid, size_t ssidLen,
                                  const u8 *pu8IEs, size_t IEsLen,
                                  wilc_connect_result pfConnectResult, void *pvUserArg,
-                                 u8 u8security, AUTHTYPE_T tenuAuth_type,
+                                 u8 u8security, enum AUTHTYPE tenuAuth_type,
                                  u8 u8channel,
                                  void *pJoinParams);
 
index f3720e7fa9928f9cb10314f5ec7d2e4bc158f51b..788cfaa661ecd32bea24744d1f5bb9e5d831ca12 100644 (file)
@@ -786,7 +786,7 @@ static int connect(struct wiphy *wiphy, struct net_device *dev,
        s32 s32Error = 0;
        u32 i;
        u8 u8security = NO_ENCRYPT;
-       AUTHTYPE_T tenuAuth_type = ANY;
+       enum AUTHTYPE tenuAuth_type = ANY;
        char *pcgroup_encrypt_val = NULL;
        char *pccipher_group = NULL;
        char *pcwpa_version = NULL;
@@ -1085,7 +1085,7 @@ static int add_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
        u8 u8mode = NO_ENCRYPT;
        u8 u8gmode = NO_ENCRYPT;
        u8 u8pmode = NO_ENCRYPT;
-       AUTHTYPE_T tenuAuth_type = ANY;
+       enum AUTHTYPE tenuAuth_type = ANY;
 
        priv = wiphy_priv(wiphy);
 
index 327ea039c946b4dc6cc57eb32427f1a7d228d441..b5b5c678b820549475d84aee56dbed73926b2dc8 100644 (file)
@@ -219,12 +219,12 @@ typedef enum {
        WPA2_AES_TKIP           = 0x71, /* Aes or Tkip */
 } SECURITY_T;
 
-typedef enum {
+enum AUTHTYPE {
        OPEN_SYSTEM             = 1,
        SHARED_KEY              = 2,
        ANY                     = 3,
        IEEE8021                = 5
-} AUTHTYPE_T;
+};
 
 typedef enum {
        SITE_SURVEY_1CH         = 0,