Commit 12a3b8bc authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: rename tenuAuth_type in wilc_set_join_req

This patch renames tenuAuth_type to auth_type to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e0c54a88
......@@ -3368,7 +3368,7 @@ int wilc_set_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 tenuAuth_type,
u8 security, enum AUTHTYPE auth_type,
u8 u8channel, void *pJoinParams)
{
int result = 0;
......@@ -3390,7 +3390,7 @@ int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
msg.id = HOST_IF_MSG_CONNECT;
msg.body.con_info.security = security;
msg.body.con_info.auth_type = tenuAuth_type;
msg.body.con_info.auth_type = auth_type;
msg.body.con_info.ch = u8channel;
msg.body.con_info.result = connect_result;
msg.body.con_info.arg = user_arg;
......
......@@ -329,7 +329,7 @@ int wilc_wait_msg_queue_idle(void);
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 tenuAuth_type,
u8 security, enum AUTHTYPE auth_type,
u8 u8channel, void *pJoinParams);
int wilc_flush_join_req(struct wilc_vif *vif);
s32 wilc_disconnect(struct wilc_vif *vif, u16 u16ReasonCode);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment