]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename u8KeyLen in host_int_add_rx_gtk
authorChaehyun Lim <chaehyun.lim@gmail.com>
Sun, 8 Nov 2015 07:49:15 +0000 (16:49 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Dec 2015 22:14:03 +0000 (14:14 -0800)
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>
drivers/staging/wilc1000/host_interface.c

index 7b647ce65fae722cd65b72c9c55257ed0278fa06..0028bed54eaef293e5d57499a03f68d8d865ab19 100644 (file)
@@ -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));