summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-11-08 08:49:15 +0100
committerGreg Kroah-Hartman2015-12-18 23:14:03 +0100
commitd002fcc0f2de5e05af3c9e753899985985a4d390 (patch)
tree8f51bb0f6cde76ab25df699d203a471169b83604 /drivers/staging/wilc1000/host_interface.c
parentstaging: wilc1000: rename u8Ciphermode in host_int_add_rx_gtk (diff)
downloadkernel-qcow2-linux-d002fcc0f2de5e05af3c9e753899985985a4d390.tar.gz
kernel-qcow2-linux-d002fcc0f2de5e05af3c9e753899985985a4d390.tar.xz
kernel-qcow2-linux-d002fcc0f2de5e05af3c9e753899985985a4d390.zip
staging: wilc1000: rename u8KeyLen in host_int_add_rx_gtk
This patch changes u8KeyLen to key_len to avoid camelcase. It is used as local variable in order to save gtk_key_len that is argument of this function. 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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 7b647ce65fae..0028bed54eae 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -3281,7 +3281,7 @@ int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
{
int result = 0;
struct host_if_msg msg;
- u8 u8KeyLen = gtk_key_len;
+ u8 key_len = gtk_key_len;
if (!hif_drv) {
PRINT_ER("driver is null\n");
@@ -3290,10 +3290,10 @@ int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
memset(&msg, 0, sizeof(struct host_if_msg));
if (rx_mic)
- u8KeyLen += RX_MIC_KEY_LEN;
+ key_len += RX_MIC_KEY_LEN;
if (tx_mic)
- u8KeyLen += TX_MIC_KEY_LEN;
+ key_len += TX_MIC_KEY_LEN;
if (key_rsc) {
msg.body.key_info.attr.wpa.seq = kmalloc(key_rsc_len, GFP_KERNEL);
@@ -3311,7 +3311,7 @@ int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
if (mode == STATION_MODE)
msg.body.key_info.action = ADDKEY;
- msg.body.key_info.attr.wpa.key = kmalloc(u8KeyLen, GFP_KERNEL);
+ msg.body.key_info.attr.wpa.key = kmalloc(key_len, GFP_KERNEL);
memcpy(msg.body.key_info.attr.wpa.key, rx_gtk, gtk_key_len);
if (rx_mic)
@@ -3323,7 +3323,7 @@ int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
TX_MIC_KEY_LEN);
msg.body.key_info.attr.wpa.index = index;
- msg.body.key_info.attr.wpa.key_len = u8KeyLen;
+ msg.body.key_info.attr.wpa.key_len = key_len;
msg.body.key_info.attr.wpa.seq_len = key_rsc_len;
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));