Commit 37ab542e authored by Tobin C. Harding's avatar Tobin C. Harding Committed by Greg Kroah-Hartman

staging: ks7010: rename RecvMIC to recv_mic

Identifier uses camel case, standard kernel style does not use camel
case.

Rename buffer 'RecvMIC' to 'recv_mic'.
Signed-off-by: default avatarTobin C. Harding <me@tobin.cc>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ba932876
...@@ -312,7 +312,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv, ...@@ -312,7 +312,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
{ {
struct ether_hdr *eth_hdr; struct ether_hdr *eth_hdr;
unsigned short eth_proto; unsigned short eth_proto;
unsigned char RecvMIC[8]; unsigned char recv_mic[8];
char buf[128]; char buf[128];
unsigned long now; unsigned long now;
struct mic_failure_t *mic_failure; struct mic_failure_t *mic_failure;
...@@ -343,7 +343,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv, ...@@ -343,7 +343,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
DPRINTK(4, "TKIP: protocol=%04X: size=%u\n", DPRINTK(4, "TKIP: protocol=%04X: size=%u\n",
eth_proto, priv->rx_size); eth_proto, priv->rx_size);
/* MIC save */ /* 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; priv->rx_size = priv->rx_size - 8;
if (auth_type > 0 && auth_type < 4) { /* auth_type check */ if (auth_type > 0 && auth_type < 4) { /* auth_type check */
MichaelMICFunction(&michael_mic, MichaelMICFunction(&michael_mic,
...@@ -353,7 +353,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv, ...@@ -353,7 +353,7 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
(uint8_t)0, /* priority */ (uint8_t)0, /* priority */
(uint8_t *)michael_mic.Result); (uint8_t *)michael_mic.Result);
} }
if (memcmp(michael_mic.Result, RecvMIC, 8) != 0) { if (memcmp(michael_mic.Result, recv_mic, 8) != 0) {
now = jiffies; now = jiffies;
mic_failure = &priv->wpa.mic_failure; mic_failure = &priv->wpa.mic_failure;
/* MIC FAILURE */ /* MIC FAILURE */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment