]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
staging: ks7010: rename RecvMIC to recv_mic
authorTobin C. Harding <me@tobin.cc>
Mon, 10 Apr 2017 03:15:54 +0000 (13:15 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Apr 2017 14:05:50 +0000 (16:05 +0200)
Identifier uses camel case, standard kernel style does not use camel
case.

Rename buffer 'RecvMIC' to 'recv_mic'.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_hostif.c

index e17ce229f1a8f1fa7a9609231600a4794aabcc13..78cdec8fd9aafac7bf7a4a1c12cdfe2ef668df58 100644 (file)
@@ -312,7 +312,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
 {
        struct ether_hdr *eth_hdr;
        unsigned short eth_proto;
-       unsigned char RecvMIC[8];
+       unsigned char recv_mic[8];
        char buf[128];
        unsigned long now;
        struct mic_failure_t *mic_failure;
@@ -343,7 +343,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
                DPRINTK(4, "TKIP: protocol=%04X: size=%u\n",
                        eth_proto, priv->rx_size);
                /* MIC save */
-               memcpy(&RecvMIC[0], (priv->rxp) + ((priv->rx_size) - 8), 8);
+               memcpy(&recv_mic[0], (priv->rxp) + ((priv->rx_size) - 8), 8);
                priv->rx_size = priv->rx_size - 8;
                if (auth_type > 0 && auth_type < 4) {   /* auth_type check */
                        MichaelMICFunction(&michael_mic,
@@ -353,7 +353,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
                                           (uint8_t)0,  /* priority */
                                           (uint8_t *)michael_mic.Result);
                }
-               if (memcmp(michael_mic.Result, RecvMIC, 8) != 0) {
+               if (memcmp(michael_mic.Result, recv_mic, 8) != 0) {
                        now = jiffies;
                        mic_failure = &priv->wpa.mic_failure;
                        /* MIC FAILURE */