Return-path: Received: from eusmtp01.atmel.com ([212.144.249.242]:52538 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752735AbbJPEkb (ORCPT ); Fri, 16 Oct 2015 00:40:31 -0400 From: Tony Cho To: CC: , , , , , , , , Subject: [PATCH V2 22/40] staging: wilc1000: rename variable gu8Chnl Date: Fri, 16 Oct 2015 13:37:52 +0900 Message-ID: <1444970290-17609-22-git-send-email-tony.cho@atmel.com> (sfid-20151016_064655_213541_547E4C5E) In-Reply-To: <1444970290-17609-1-git-send-email-tony.cho@atmel.com> References: <1444970290-17609-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 variable gu8Chnl to ch_no 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 2648e43..c9126d0 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -255,7 +255,7 @@ static bool scan_while_connected; static s8 rssi; static s8 link_speed; -static u8 gu8Chnl; +static u8 ch_no; static u8 gs8SetIP[2][4]; static u8 gs8GetIP[2][4]; static u32 gu32InactiveTime; @@ -2137,7 +2137,7 @@ static s32 Handle_GetChnl(struct host_if_drv *hif_drv) strWID.id = (u16)WID_CURRENT_CHANNEL; strWID.type = WID_CHAR; - strWID.val = (s8 *)&gu8Chnl; + strWID.val = (s8 *)&ch_no; strWID.size = sizeof(char); PRINT_D(HOSTINF_DBG, "Getting channel value\n"); @@ -3852,7 +3852,7 @@ s32 host_int_get_host_chnl_num(struct host_if_drv *hif_drv, u8 *pu8ChNo) PRINT_ER("wilc mq send fail\n"); down(&hif_drv->hSemGetCHNL); - *pu8ChNo = gu8Chnl; + *pu8ChNo = ch_no; return s32Error; -- 1.9.1