summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-11-08 08:49:00 +0100
committerGreg Kroah-Hartman2015-12-18 23:14:03 +0100
commitf0c82579d853825d5728d189dba8dbbad61cbaca (patch)
treedaf954b55832120dcecadb7f7c17f837a7da8b0c /drivers/staging/wilc1000/host_interface.c
parentstaging: wilc1000: rename pu8TxMic in host_int_add_ptk (diff)
downloadkernel-qcow2-linux-f0c82579d853825d5728d189dba8dbbad61cbaca.tar.gz
kernel-qcow2-linux-f0c82579d853825d5728d189dba8dbbad61cbaca.tar.xz
kernel-qcow2-linux-f0c82579d853825d5728d189dba8dbbad61cbaca.zip
staging: wilc1000: rename u8Ciphermode in host_int_add_ptk
This patch changes u8Ciphermode to cipher_mode to avoid camelcase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/host_interface.c')
-rw-r--r--drivers/staging/wilc1000/host_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index a8566eebda8a..80a1442ab6d2 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));