From patchwork Mon Oct 26 00:44:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7484441 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E7E57BEEA4 for ; Mon, 26 Oct 2015 00:45:07 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1E697207E3 for ; Mon, 26 Oct 2015 00:45:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3A027207DD for ; Mon, 26 Oct 2015 00:45:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752606AbbJZApD (ORCPT ); Sun, 25 Oct 2015 20:45:03 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:36216 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752252AbbJZApC (ORCPT ); Sun, 25 Oct 2015 20:45:02 -0400 Received: by pacfv9 with SMTP id fv9so177826040pac.3 for ; Sun, 25 Oct 2015 17:45:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=hGU80lxqRdbz42No1nauWQC0zFkzCkEPG78g2TzWqbg=; b=HyrK7cZpPMbqs1WRxWPu2As15OtiPb+5SGc/V7/4Q74Duoa6njrQbCIa8uuGKvli0g L3NyXdAHoO+77NEg/z6fQ0IP3cyd642+DfkKfj48BuMO1lpd1FHY6ISF6Y52oikdJ0bx zoxXS5KyhJ/8QWUMe/9a/xapb6IbIKVNfOAr6r9cOQHzgjiY0elyXeLKtwycZwKsNzvf AERX7kyp/5B+axLlYxJEzqbbMuMInGPMeccS9x5rSUhsBF/2BwmRowVaVdi/l2Gs1Iyw QPqmjYN9TNio/Sx1Up35BbcrHYe3SNfNytl7SWfReO4C6cvo8VkH+RDEjhBb5hvBoBVs WOlA== X-Received: by 10.68.243.106 with SMTP id wx10mr18953962pbc.151.1445820301212; Sun, 25 Oct 2015 17:45:01 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id rz9sm30428808pbb.61.2015.10.25.17.44.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 25 Oct 2015 17:45:00 -0700 (PDT) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, rachel.kim@atmel.com, chris.park@atmel.com, tony.cho@atmel.com, glen.lee@atmel.com, leo.kim@atmel.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, Chaehyun Lim Subject: [PATCH 3/4] staging: wilc1000: rename u8Index in host_int_set_WEPDefaultKeyID Date: Mon, 26 Oct 2015 09:44:44 +0900 Message-Id: <1445820285-14433-3-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1445820285-14433-1-git-send-email-chaehyun.lim@gmail.com> References: <1445820285-14433-1-git-send-email-chaehyun.lim@gmail.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch changes second parameter of host_int_set_WEPDefaultKeyID from u8Index to index to avoid camelcase. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/host_interface.c | 4 ++-- drivers/staging/wilc1000/host_interface.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 56e0859..4f1af61 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -3128,7 +3128,7 @@ int host_int_remove_wep_key(struct host_if_drv *hif_drv, u8 index) return result; } -int host_int_set_WEPDefaultKeyID(struct host_if_drv *hif_drv, u8 u8Index) +int host_int_set_WEPDefaultKeyID(struct host_if_drv *hif_drv, u8 index) { int result = 0; struct host_if_msg msg; @@ -3147,7 +3147,7 @@ int host_int_set_WEPDefaultKeyID(struct host_if_drv *hif_drv, u8 u8Index) msg.body.key_info.type = WEP; msg.body.key_info.action = DEFAULTKEY; msg.drv = hif_drv; - msg.body.key_info.attr.wep.index = u8Index; + msg.body.key_info.attr.wep.index = index; result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg)); if (result) diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 7631757..ea91bbf 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -384,7 +384,7 @@ int host_int_remove_wep_key(struct host_if_drv *wfi_drv, u8 index); * @date 8 March 2012 * @version 1.0 */ -int host_int_set_WEPDefaultKeyID(struct host_if_drv *hif_drv, u8 u8Index); +int host_int_set_WEPDefaultKeyID(struct host_if_drv *hif_drv, u8 index); /** * @brief sets WEP deafault key