From patchwork Mon Jan 22 10:22:23 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ajay Singh X-Patchwork-Id: 10178075 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B7CD8600F5 for ; Mon, 22 Jan 2018 10:23:28 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 95BE827F81 for ; Mon, 22 Jan 2018 10:23:28 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8A33127F88; Mon, 22 Jan 2018 10:23:28 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 152EE27F81 for ; Mon, 22 Jan 2018 10:23:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751206AbeAVKX0 (ORCPT ); Mon, 22 Jan 2018 05:23:26 -0500 Received: from esa6.microchip.iphmx.com ([216.71.154.253]:52851 "EHLO esa6.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751204AbeAVKXZ (ORCPT ); Mon, 22 Jan 2018 05:23:25 -0500 X-IronPort-AV: E=Sophos;i="5.44,434,1505804400"; d="scan'208";a="8070315" Received: from exsmtp02.microchip.com (HELO email.microchip.com) ([198.175.253.38]) by esa6.microchip.iphmx.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 22 Jan 2018 03:23:25 -0700 Received: from ajaysk-VirtualBox.mchp-main.com (10.10.76.4) by chn-sv-exch02.mchp-main.com (10.10.76.38) with Microsoft SMTP Server id 14.3.352.0; Mon, 22 Jan 2018 03:23:24 -0700 From: Ajay Singh To: CC: , , , , , , Ajay Singh Subject: [PATCH v2 10/14] staging: wilc1000: rename ptstrJoinBssParam variable to avoid camelCase Date: Mon, 22 Jan 2018 15:52:23 +0530 Message-ID: <1516616547-24654-11-git-send-email-ajay.kathat@microchip.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516616547-24654-1-git-send-email-ajay.kathat@microchip.com> References: <1516616547-24654-1-git-send-email-ajay.kathat@microchip.com> MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix "Avoid camelCase" issue reported by checkpatch.pl script. Signed-off-by: Ajay Singh Reviewed-by: Claudiu Beznea --- drivers/staging/wilc1000/host_interface.c | 78 +++++++++++++++---------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 4856d4f..c3b6368 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -909,7 +909,7 @@ static s32 Handle_Connect(struct wilc_vif *vif, struct wid wid_list[8]; u32 wid_cnt = 0, dummyval = 0; u8 *cur_byte = NULL; - struct join_bss_param *ptstrJoinBssParam; + struct join_bss_param *bss_param; struct host_if_drv *hif_drv = vif->hif_drv; if (memcmp(attr->bssid, wilc_connected_ssid, ETH_ALEN) == 0) { @@ -918,8 +918,8 @@ static s32 Handle_Connect(struct wilc_vif *vif, return result; } - ptstrJoinBssParam = attr->params; - if (!ptstrJoinBssParam) { + bss_param = attr->params; + if (!bss_param) { netdev_err(vif->ndev, "Required BSSID not found\n"); result = -ENOENT; goto ERRORHANDLER; @@ -1027,8 +1027,8 @@ static s32 Handle_Connect(struct wilc_vif *vif, netdev_err(vif->ndev, "Channel out of range\n"); *(cur_byte++) = 0xFF; } - *(cur_byte++) = (ptstrJoinBssParam->cap_info) & 0xFF; - *(cur_byte++) = ((ptstrJoinBssParam->cap_info) >> 8) & 0xFF; + *(cur_byte++) = (bss_param->cap_info) & 0xFF; + *(cur_byte++) = ((bss_param->cap_info) >> 8) & 0xFF; if (attr->bssid) memcpy(cur_byte, attr->bssid, 6); @@ -1038,57 +1038,57 @@ static s32 Handle_Connect(struct wilc_vif *vif, memcpy(cur_byte, attr->bssid, 6); cur_byte += 6; - *(cur_byte++) = (ptstrJoinBssParam->beacon_period) & 0xFF; - *(cur_byte++) = ((ptstrJoinBssParam->beacon_period) >> 8) & 0xFF; - *(cur_byte++) = ptstrJoinBssParam->dtim_period; + *(cur_byte++) = (bss_param->beacon_period) & 0xFF; + *(cur_byte++) = ((bss_param->beacon_period) >> 8) & 0xFF; + *(cur_byte++) = bss_param->dtim_period; - memcpy(cur_byte, ptstrJoinBssParam->supp_rates, MAX_RATES_SUPPORTED + 1); + memcpy(cur_byte, bss_param->supp_rates, MAX_RATES_SUPPORTED + 1); cur_byte += (MAX_RATES_SUPPORTED + 1); - *(cur_byte++) = ptstrJoinBssParam->wmm_cap; - *(cur_byte++) = ptstrJoinBssParam->uapsd_cap; + *(cur_byte++) = bss_param->wmm_cap; + *(cur_byte++) = bss_param->uapsd_cap; - *(cur_byte++) = ptstrJoinBssParam->ht_capable; - hif_drv->usr_conn_req.ht_capable = ptstrJoinBssParam->ht_capable; + *(cur_byte++) = bss_param->ht_capable; + hif_drv->usr_conn_req.ht_capable = bss_param->ht_capable; - *(cur_byte++) = ptstrJoinBssParam->rsn_found; - *(cur_byte++) = ptstrJoinBssParam->rsn_grp_policy; - *(cur_byte++) = ptstrJoinBssParam->mode_802_11i; + *(cur_byte++) = bss_param->rsn_found; + *(cur_byte++) = bss_param->rsn_grp_policy; + *(cur_byte++) = bss_param->mode_802_11i; - memcpy(cur_byte, ptstrJoinBssParam->rsn_pcip_policy, sizeof(ptstrJoinBssParam->rsn_pcip_policy)); - cur_byte += sizeof(ptstrJoinBssParam->rsn_pcip_policy); + memcpy(cur_byte, bss_param->rsn_pcip_policy, sizeof(bss_param->rsn_pcip_policy)); + cur_byte += sizeof(bss_param->rsn_pcip_policy); - memcpy(cur_byte, ptstrJoinBssParam->rsn_auth_policy, sizeof(ptstrJoinBssParam->rsn_auth_policy)); - cur_byte += sizeof(ptstrJoinBssParam->rsn_auth_policy); + memcpy(cur_byte, bss_param->rsn_auth_policy, sizeof(bss_param->rsn_auth_policy)); + cur_byte += sizeof(bss_param->rsn_auth_policy); - memcpy(cur_byte, ptstrJoinBssParam->rsn_cap, sizeof(ptstrJoinBssParam->rsn_cap)); - cur_byte += sizeof(ptstrJoinBssParam->rsn_cap); + memcpy(cur_byte, bss_param->rsn_cap, sizeof(bss_param->rsn_cap)); + cur_byte += sizeof(bss_param->rsn_cap); *(cur_byte++) = REAL_JOIN_REQ; - *(cur_byte++) = ptstrJoinBssParam->noa_enabled; + *(cur_byte++) = bss_param->noa_enabled; - if (ptstrJoinBssParam->noa_enabled) { - *(cur_byte++) = (ptstrJoinBssParam->tsf) & 0xFF; - *(cur_byte++) = ((ptstrJoinBssParam->tsf) >> 8) & 0xFF; - *(cur_byte++) = ((ptstrJoinBssParam->tsf) >> 16) & 0xFF; - *(cur_byte++) = ((ptstrJoinBssParam->tsf) >> 24) & 0xFF; + if (bss_param->noa_enabled) { + *(cur_byte++) = (bss_param->tsf) & 0xFF; + *(cur_byte++) = ((bss_param->tsf) >> 8) & 0xFF; + *(cur_byte++) = ((bss_param->tsf) >> 16) & 0xFF; + *(cur_byte++) = ((bss_param->tsf) >> 24) & 0xFF; - *(cur_byte++) = ptstrJoinBssParam->opp_enabled; - *(cur_byte++) = ptstrJoinBssParam->idx; + *(cur_byte++) = bss_param->opp_enabled; + *(cur_byte++) = bss_param->idx; - if (ptstrJoinBssParam->opp_enabled) - *(cur_byte++) = ptstrJoinBssParam->ct_window; + if (bss_param->opp_enabled) + *(cur_byte++) = bss_param->ct_window; - *(cur_byte++) = ptstrJoinBssParam->cnt; + *(cur_byte++) = bss_param->cnt; - memcpy(cur_byte, ptstrJoinBssParam->duration, sizeof(ptstrJoinBssParam->duration)); - cur_byte += sizeof(ptstrJoinBssParam->duration); + memcpy(cur_byte, bss_param->duration, sizeof(bss_param->duration)); + cur_byte += sizeof(bss_param->duration); - memcpy(cur_byte, ptstrJoinBssParam->interval, sizeof(ptstrJoinBssParam->interval)); - cur_byte += sizeof(ptstrJoinBssParam->interval); + memcpy(cur_byte, bss_param->interval, sizeof(bss_param->interval)); + cur_byte += sizeof(bss_param->interval); - memcpy(cur_byte, ptstrJoinBssParam->start_time, sizeof(ptstrJoinBssParam->start_time)); - cur_byte += sizeof(ptstrJoinBssParam->start_time); + memcpy(cur_byte, bss_param->start_time, sizeof(bss_param->start_time)); + cur_byte += sizeof(bss_param->start_time); } cur_byte = wid_list[wid_cnt].val;