linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chaehyun Lim <chaehyun.lim@gmail.com>
To: gregkh@linuxfoundation.org
Cc: johnny.kim@atmel.com, austin.shin@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 <chaehyun.lim@gmail.com>
Subject: [PATCH 07/32] staging: wilc1000: rename u8Ciphermode in host_int_add_ptk
Date: Sun,  8 Nov 2015 16:49:00 +0900	[thread overview]
Message-ID: <1446968965-8958-7-git-send-email-chaehyun.lim@gmail.com> (raw)
In-Reply-To: <1446968965-8958-1-git-send-email-chaehyun.lim@gmail.com>

This patch changes u8Ciphermode to cipher_mode to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
---
 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 a8566ee..80a1442 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -3210,7 +3210,7 @@ int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
 int host_int_add_ptk(struct host_if_drv *hif_drv, const u8 *ptk,
 		     u8 ptk_key_len, const u8 *mac_addr,
 		     const u8 *rx_mic, const u8 *tx_mic,
-		     u8 mode, u8 u8Ciphermode, u8 u8Idx)
+		     u8 mode, u8 cipher_mode, u8 u8Idx)
 {
 	int result = 0;
 	struct host_if_msg msg;
@@ -3259,7 +3259,7 @@ int host_int_add_ptk(struct host_if_drv *hif_drv, const u8 *ptk,
 
 	msg.body.key_info.attr.wpa.key_len = u8KeyLen;
 	msg.body.key_info.attr.wpa.mac_addr = mac_addr;
-	msg.body.key_info.attr.wpa.mode = u8Ciphermode;
+	msg.body.key_info.attr.wpa.mode = cipher_mode;
 	msg.drv = hif_drv;
 
 	result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h
index 5da584b..04ecf50 100644
--- a/drivers/staging/wilc1000/host_interface.h
+++ b/drivers/staging/wilc1000/host_interface.h
@@ -314,7 +314,7 @@ int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
 int host_int_add_ptk(struct host_if_drv *hif_drv, const u8 *ptk,
 		     u8 ptk_key_len, const u8 *mac_addr,
 		     const u8 *rx_mic, const u8 *tx_mic,
-		     u8 mode, u8 u8Ciphermode, u8 u8Idx);
+		     u8 mode, u8 cipher_mode, u8 u8Idx);
 s32 host_int_get_inactive_time(struct host_if_drv *hWFIDrv, const u8 *mac,
 			       u32 *pu32InactiveTime);
 s32 host_int_add_rx_gtk(struct host_if_drv *hWFIDrv, const u8 *pu8RxGtk,
-- 
2.6.3


  parent reply	other threads:[~2015-11-08  7:49 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-08  7:48 [PATCH 01/32] staging: wilc1000: fix return type of host_int_add_ptk Chaehyun Lim
2015-11-08  7:48 ` [PATCH 02/32] staging: wilc1000: fix argument name " Chaehyun Lim
2015-11-08  7:48 ` [PATCH 03/32] staging: wilc1000: rename pu8Ptk in host_int_add_ptk Chaehyun Lim
2015-11-08  7:48 ` [PATCH 04/32] staging: wilc1000: rename u8PtkKeylen " Chaehyun Lim
2015-11-08  7:48 ` [PATCH 05/32] staging: wilc1000: rename pu8RxMic " Chaehyun Lim
2015-11-08  7:48 ` [PATCH 06/32] staging: wilc1000: rename pu8TxMic " Chaehyun Lim
2015-11-08  7:49 ` Chaehyun Lim [this message]
2015-11-08  7:49 ` [PATCH 08/32] staging: wilc1000: rename u8Idx " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 09/32] staging: wilc1000: replace u32 with int Chaehyun Lim
2015-11-08  7:49 ` [PATCH 10/32] staging: wilc1000: rename u8KeyLen in host_int_add_ptk Chaehyun Lim
2015-11-08  7:49 ` [PATCH 11/32] staging: wilc1000: use kmemdup " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 12/32] staging: wilc1000: fix return type of host_int_add_rx_gtk Chaehyun Lim
2015-11-08  7:49 ` [PATCH 13/32] staging: wilc1000: fix argument name " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 14/32] staging: wilc1000: rename pu8RxGtk in host_int_add_rx_gtk Chaehyun Lim
2015-11-08  7:49 ` [PATCH 15/32] staging: wilc1000: rename u8GtkKeylen " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 16/32] staging: wilc1000: rename u8KeyIdx " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 17/32] staging: wilc1000: rename u32KeyRSClen " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 18/32] staging: wilc1000: rename KeyRSC " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 19/32] staging: wilc1000: rename pu8RxMic " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 20/32] staging: wilc1000: rename pu8TxMic " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 21/32] staging: wilc1000: rename u8Ciphermode " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 22/32] staging: wilc1000: rename u8KeyLen " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 23/32] staging: wilc1000: use kmemdup " Chaehyun Lim
2015-11-08  7:49 ` [PATCH 24/32] staging: wilc1000: remove host_int_add_tx_gtk declaration Chaehyun Lim
2015-11-08  7:49 ` [PATCH 25/32] staging: wilc1000: remove host_int_get_pmkid_info Chaehyun Lim
2015-11-08  7:49 ` [PATCH 26/32] staging: wilc1000: remove host_int_set_RSNAConfigPSKPassPhrase Chaehyun Lim
2015-11-08  7:49 ` [PATCH 27/32] staging: wilc1000: remove host_int_get_RSNAConfigPSKPassPhrase Chaehyun Lim
2015-11-08  7:49 ` [PATCH 28/32] staging: wilc1000: remove host_int_set_start_scan_req Chaehyun Lim
2015-11-08  7:49 ` [PATCH 29/32] staging: wilc1000: remove host_int_get_start_scan_req Chaehyun Lim
2015-11-08  7:49 ` [PATCH 30/32] staging: wilc1000: remove host_int_disconnect_station Chaehyun Lim
2015-11-08  7:49 ` [PATCH 31/32] staging: wilc1000: remove host_int_get_assoc_req_info Chaehyun Lim
2015-11-08  7:49 ` [PATCH 32/32] staging: wilc1000: remove host_int_get_rx_power_level Chaehyun Lim
2015-11-10  0:41   ` Shin, Austin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1446968965-8958-7-git-send-email-chaehyun.lim@gmail.com \
    --to=chaehyun.lim@gmail.com \
    --cc=austin.shin@atmel.com \
    --cc=chris.park@atmel.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=glen.lee@atmel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=johnny.kim@atmel.com \
    --cc=leo.kim@atmel.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=tony.cho@atmel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).