mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 17:26:42 +09:00
staging: wilc1000: rename tenuAuth_type in wilc_set_join_req
This patch renames tenuAuth_type to auth_type to avoid camelcase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e0c54a883f
commit
12a3b8bc26
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user