From: Tree Davies <tdavies@darkphysics.net>
To: gregkh@linuxfoundation.org, philipp.g.hortmann@gmail.com, anjan@momi.ca
Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
Tree Davies <tdavies@darkphysics.net>
Subject: [PATCH 14/20] Staging: rtl8192e: Rename variable osCcxAironetIE
Date: Sun, 25 Feb 2024 19:56:18 -0800 [thread overview]
Message-ID: <20240226035624.370443-15-tdavies@darkphysics.net> (raw)
In-Reply-To: <20240226035624.370443-1-tdavies@darkphysics.net>
Rename variable osCcxAironetIE to os_ccx_aironet_ie to fix checkpatch warning
Avoid CamelCase.
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
---
drivers/staging/rtl8192e/rtllib_softmac.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtllib_softmac.c b/drivers/staging/rtl8192e/rtllib_softmac.c
index ff912cdac9bd..68194763b20c 100644
--- a/drivers/staging/rtl8192e/rtllib_softmac.c
+++ b/drivers/staging/rtl8192e/rtllib_softmac.c
@@ -820,21 +820,21 @@ rtllib_association_req(struct rtllib_network *beacon,
if (beacon->ckip_supported) {
static const u8 aironet_ie_oui[] = {0x00, 0x01, 0x66};
u8 CcxAironetBuf[30];
- struct octet_string osCcxAironetIE;
+ struct octet_string os_ccx_aironet_ie;
memset(CcxAironetBuf, 0, 30);
- osCcxAironetIE.octet = CcxAironetBuf;
- osCcxAironetIE.Length = sizeof(CcxAironetBuf);
- memcpy(osCcxAironetIE.octet, aironet_ie_oui,
+ os_ccx_aironet_ie.octet = CcxAironetBuf;
+ os_ccx_aironet_ie.Length = sizeof(CcxAironetBuf);
+ memcpy(os_ccx_aironet_ie.octet, aironet_ie_oui,
sizeof(aironet_ie_oui));
- osCcxAironetIE.octet[IE_CISCO_FLAG_POSITION] |=
+ os_ccx_aironet_ie.octet[IE_CISCO_FLAG_POSITION] |=
(SUPPORT_CKIP_PK | SUPPORT_CKIP_MIC);
tag = skb_put(skb, ckip_ie_len);
*tag++ = MFIE_TYPE_AIRONET;
- *tag++ = osCcxAironetIE.Length;
- memcpy(tag, osCcxAironetIE.octet, osCcxAironetIE.Length);
- tag += osCcxAironetIE.Length;
+ *tag++ = os_ccx_aironet_ie.Length;
+ memcpy(tag, os_ccx_aironet_ie.octet, os_ccx_aironet_ie.Length);
+ tag += os_ccx_aironet_ie.Length;
}
if (beacon->ccx_rm_enable) {
--
2.39.2
next prev parent reply other threads:[~2024-02-26 3:56 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-26 3:56 [PATCH 00/20] Staging: rtl8192e: Fix checkpatch warning for rtllib_softmac.c Tree Davies
2024-02-26 3:56 ` [PATCH 01/20] Staging: rtl8192e: Rename function rtllib_rx_ADDBAReq() Tree Davies
2024-02-26 16:59 ` Philipp Hortmann
2024-02-26 3:56 ` [PATCH 02/20] Staging: rtl8192e: Rename variable NumRecvDataInPeriod Tree Davies
2024-02-26 3:56 ` [PATCH 03/20] Staging: rtl8192e: Rename function SecIsInPMKIDList() Tree Davies
2024-02-26 3:56 ` [PATCH 04/20] Staging: rtl8192e: Rename variable PMKIDList Tree Davies
2024-02-26 3:56 ` [PATCH 05/20] Staging: rtl8192e: Rename variable Turbo_Enable Tree Davies
2024-02-26 3:56 ` [PATCH 06/20] Staging: rtl8192e: Rename variable osCcxRmCap Tree Davies
2024-02-26 3:56 ` [PATCH 07/20] Staging: rtl8192e: Rename variable bCkipSupported Tree Davies
2024-02-26 3:56 ` [PATCH 08/20] Staging: rtl8192e: Rename variable bCcxRmEnable Tree Davies
2024-02-26 3:56 ` [PATCH 09/20] Staging: rtl8192e: Rename variable CcxRmCapBuf Tree Davies
2024-02-26 3:56 ` [PATCH 10/20] Staging: rtl8192e: Rename variable BssCcxVerNumber Tree Davies
2024-02-26 3:56 ` [PATCH 11/20] Staging: rtl8192e: Rename variable CcxVerNumBuf Tree Davies
2024-02-26 3:56 ` [PATCH 12/20] Staging: rtl8192e: Rename variable asRsn Tree Davies
2024-02-26 3:56 ` [PATCH 13/20] Staging: rtl8192e: Rename variable AironetIeOui Tree Davies
2024-02-26 3:56 ` Tree Davies [this message]
2024-02-26 3:56 ` [PATCH 15/20] Staging: rtl8192e: Rename variable CcxAironetBuf Tree Davies
2024-02-26 3:56 ` [PATCH 16/20] Staging: rtl8192e: Rename varoable osCcxVerNum Tree Davies
2024-02-26 3:56 ` [PATCH 17/20] Staging: rtl8192e: Rename varoable asSta Tree Davies
2024-02-26 3:56 ` [PATCH 18/20] Staging: rtl8192e: Rename reference AllowAllDestAddrHandler Tree Davies
2024-02-26 3:56 ` [PATCH 19/20] Staging: rtl8192e: Rename boolean variable bHalfWirelessN24GMode Tree Davies
2024-02-26 3:56 ` [PATCH 20/20] Staging: rtl8192e: Rename function MgntQuery_MgntFrameTxRate Tree Davies
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240226035624.370443-15-tdavies@darkphysics.net \
--to=tdavies@darkphysics.net \
--cc=anjan@momi.ca \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=philipp.g.hortmann@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox