diff options
author | Tree Davies <tdavies@darkphysics.net> | 2024-02-26 20:41:50 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-03-05 14:15:09 +0000 |
commit | b526e4960a2cdb9d95d3ac96a90e7cd6d250ae57 (patch) | |
tree | 22c5f1fb4cf7df086ac5471e3bbbaf942ad66fbe /drivers/staging | |
parent | 0c5d6ec42d575e14de3a0de25ba4dcf1737eb992 (diff) |
Staging: rtl8192e: Rename variable AironetIeOui
Rename variable AironetIeOui to aironet_ie_oui to fix checkpatch warning
Avoid CamelCase.
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240227044157.407379-14-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/rtl8192e/rtllib_softmac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_softmac.c b/drivers/staging/rtl8192e/rtllib_softmac.c index 880ce2bfd0eb..da8be4383d69 100644 --- a/drivers/staging/rtl8192e/rtllib_softmac.c +++ b/drivers/staging/rtl8192e/rtllib_softmac.c @@ -818,15 +818,15 @@ rtllib_association_req(struct rtllib_network *beacon, } if (beacon->ckip_supported) { - static const u8 AironetIeOui[] = {0x00, 0x01, 0x66}; + static const u8 aironet_ie_oui[] = {0x00, 0x01, 0x66}; u8 CcxAironetBuf[30]; struct octet_string osCcxAironetIE; memset(CcxAironetBuf, 0, 30); osCcxAironetIE.octet = CcxAironetBuf; osCcxAironetIE.Length = sizeof(CcxAironetBuf); - memcpy(osCcxAironetIE.octet, AironetIeOui, - sizeof(AironetIeOui)); + memcpy(osCcxAironetIE.octet, aironet_ie_oui, + sizeof(aironet_ie_oui)); osCcxAironetIE.octet[IE_CISCO_FLAG_POSITION] |= (SUPPORT_CKIP_PK | SUPPORT_CKIP_MIC); |