staging: wilc1000: remove typedef from AUTHTYPE_T
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>
This commit is contained in:
parent
b6ab85fe61
commit
841dfc428d
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user