staging: rtl8192e: avoid CamelCase <dot11RSNAStatsCCMPReplays>

Linux kernel coding-style suggests to not use mixed-case names. Fix
checkpatch issue by changing the variable name from camel case to snake
case.

Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/7166160c0face9e32dbb28c44727eb8856173f0a.1680445545.git.kamrankhadijadj@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Khadija Kamran 2023-04-02 19:32:45 +05:00 committed by Greg Kroah-Hartman
parent 73749c7fb4
commit f60fc1311b
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ struct rtllib_ccmp_data {
u8 rx_pn[CCMP_PN_LEN];
u32 dot11rsna_stats_ccmp_format_errors;
u32 dot11RSNAStatsCCMPReplays;
u32 dot11rsna_stats_ccmp_replays;
u32 dot11RSNAStatsCCMPDecryptErrors;
int key_idx;
@ -263,7 +263,7 @@ static int rtllib_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
pn[5] = pos[0];
pos += 8;
if (memcmp(pn, key->rx_pn, CCMP_PN_LEN) <= 0) {
key->dot11RSNAStatsCCMPReplays++;
key->dot11rsna_stats_ccmp_replays++;
return -4;
}
if (!tcb_desc->bHwSec) {
@ -375,7 +375,7 @@ static void rtllib_ccmp_print_stats(struct seq_file *m, void *priv)
ccmp->key_idx, ccmp->key_set,
ccmp->tx_pn, ccmp->rx_pn,
ccmp->dot11rsna_stats_ccmp_format_errors,
ccmp->dot11RSNAStatsCCMPReplays,
ccmp->dot11rsna_stats_ccmp_replays,
ccmp->dot11RSNAStatsCCMPDecryptErrors);
}