Return-path: Received: from eusmtp01.atmel.com ([212.144.249.242]:3100 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752309AbbJMKxq (ORCPT ); Tue, 13 Oct 2015 06:53:46 -0400 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 29/54] staging: wilc1000: rename u8security of struct connect_attr Date: Tue, 13 Oct 2015 19:49:54 +0900 Message-ID: <1444733419-17679-29-git-send-email-tony.cho@atmel.com> (sfid-20151013_131654_476026_19711206) In-Reply-To: <1444733419-17679-1-git-send-email-tony.cho@atmel.com> References: <1444733419-17679-1-git-send-email-tony.cho@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: From: Leo Kim This patch renames u8security of struct connect_attr to security to avoid CamelCase naming convention. Signed-off-by: Leo Kim Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 545f763..6e5db9d 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -113,7 +113,7 @@ struct connect_attr { size_t ssid_len; u8 *ies; size_t ies_len; - u8 u8security; + u8 security; wilc_connect_result pfConnectResult; void *pvUserArg; enum AUTHTYPE tenuAuth_type; @@ -1051,7 +1051,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv, pstrHostIFconnectAttr->ies_len); } - hif_drv->strWILC_UsrConnReq.u8security = pstrHostIFconnectAttr->u8security; + hif_drv->strWILC_UsrConnReq.u8security = pstrHostIFconnectAttr->security; hif_drv->strWILC_UsrConnReq.tenuAuth_type = pstrHostIFconnectAttr->tenuAuth_type; hif_drv->strWILC_UsrConnReq.pfUserConnectResult = pstrHostIFconnectAttr->pfConnectResult; hif_drv->strWILC_UsrConnReq.u32UserConnectPvoid = pstrHostIFconnectAttr->pvUserArg; @@ -3611,7 +3611,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.u8security = u8security; + msg.body.con_info.security = u8security; msg.body.con_info.tenuAuth_type = tenuAuth_type; msg.body.con_info.u8channel = u8channel; msg.body.con_info.pfConnectResult = pfConnectResult; -- 1.9.1