diff options
| author | Leo Kim <leo.kim@atmel.com> | 2015-10-13 13:49:57 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-13 19:55:08 +0300 |
| commit | 61b4fd022f443eb11b17e8a4160c4434b2d4fc7f (patch) | |
| tree | b4ded4fd1fcdcbdf9fb3fc13097e2b2a144451fc | |
| parent | 8f38db897be4f47a3d015e2b8061e013d6abbe18 (diff) | |
| download | linux-61b4fd022f443eb11b17e8a4160c4434b2d4fc7f.tar.xz | |
staging: wilc1000: rename tenuAuth_type of struct connect_attr
This patch renames tenuAuth_type of struct connect_attr to auth_type to
avoid CamelCase naming convention.
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>
| -rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 0790dcb77fb8..695fd5c95e99 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -116,7 +116,7 @@ struct connect_attr { u8 security; wilc_connect_result result; void *arg; - enum AUTHTYPE tenuAuth_type; + enum AUTHTYPE auth_type; u8 u8channel; void *pJoinParams; }; @@ -1052,7 +1052,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv, } hif_drv->strWILC_UsrConnReq.u8security = pstrHostIFconnectAttr->security; - hif_drv->strWILC_UsrConnReq.tenuAuth_type = pstrHostIFconnectAttr->tenuAuth_type; + hif_drv->strWILC_UsrConnReq.tenuAuth_type = pstrHostIFconnectAttr->auth_type; hif_drv->strWILC_UsrConnReq.pfUserConnectResult = pstrHostIFconnectAttr->result; hif_drv->strWILC_UsrConnReq.u32UserConnectPvoid = pstrHostIFconnectAttr->arg; @@ -3612,7 +3612,7 @@ s32 host_int_set_join_req(struct host_if_drv *hif_drv, u8 *pu8bssid, msg.id = HOST_IF_MSG_CONNECT; msg.body.con_info.security = u8security; - msg.body.con_info.tenuAuth_type = tenuAuth_type; + msg.body.con_info.auth_type = tenuAuth_type; msg.body.con_info.u8channel = u8channel; msg.body.con_info.result = pfConnectResult; msg.body.con_info.arg = pvUserArg; |
