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 15/18] Staging: rtl8192e: Rename variable Octet
Date: Wed, 24 Jan 2024 14:44:49 -0800 [thread overview]
Message-ID: <20240124224452.968724-16-tdavies@darkphysics.net> (raw)
In-Reply-To: <20240124224452.968724-1-tdavies@darkphysics.net>
Rename variable Octet to octet to fix checkpatch
warning Avoid CamelCase.
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
---
drivers/staging/rtl8192e/rtl819x_Qos.h | 2 +-
drivers/staging/rtl8192e/rtllib_softmac.c | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtl819x_Qos.h b/drivers/staging/rtl8192e/rtl819x_Qos.h
index 50e01ca49a4c..dc991100742f 100644
--- a/drivers/staging/rtl8192e/rtl819x_Qos.h
+++ b/drivers/staging/rtl8192e/rtl819x_Qos.h
@@ -13,7 +13,7 @@ struct qos_tsinfo {
};
struct octet_string {
- u8 *Octet;
+ u8 *octet;
u16 Length;
};
diff --git a/drivers/staging/rtl8192e/rtllib_softmac.c b/drivers/staging/rtl8192e/rtllib_softmac.c
index 5281138ad468..e47292455585 100644
--- a/drivers/staging/rtl8192e/rtllib_softmac.c
+++ b/drivers/staging/rtl8192e/rtllib_softmac.c
@@ -823,17 +823,17 @@ rtllib_association_req(struct rtllib_network *beacon,
struct octet_string osCcxAironetIE;
memset(CcxAironetBuf, 0, 30);
- osCcxAironetIE.Octet = CcxAironetBuf;
+ osCcxAironetIE.octet = CcxAironetBuf;
osCcxAironetIE.Length = sizeof(CcxAironetBuf);
- memcpy(osCcxAironetIE.Octet, AironetIeOui,
+ memcpy(osCcxAironetIE.octet, AironetIeOui,
sizeof(AironetIeOui));
- osCcxAironetIE.Octet[IE_CISCO_FLAG_POSITION] |=
+ osCcxAironetIE.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);
+ memcpy(tag, osCcxAironetIE.octet, osCcxAironetIE.Length);
tag += osCcxAironetIE.Length;
}
@@ -842,12 +842,12 @@ rtllib_association_req(struct rtllib_network *beacon,
0x00};
struct octet_string osCcxRmCap;
- osCcxRmCap.Octet = (u8 *)CcxRmCapBuf;
+ osCcxRmCap.octet = (u8 *)CcxRmCapBuf;
osCcxRmCap.Length = sizeof(CcxRmCapBuf);
tag = skb_put(skb, ccxrm_ie_len);
*tag++ = MFIE_TYPE_GENERIC;
*tag++ = osCcxRmCap.Length;
- memcpy(tag, osCcxRmCap.Octet, osCcxRmCap.Length);
+ memcpy(tag, osCcxRmCap.octet, osCcxRmCap.Length);
tag += osCcxRmCap.Length;
}
@@ -856,12 +856,12 @@ rtllib_association_req(struct rtllib_network *beacon,
struct octet_string osCcxVerNum;
CcxVerNumBuf[4] = beacon->BssCcxVerNumber;
- osCcxVerNum.Octet = CcxVerNumBuf;
+ osCcxVerNum.octet = CcxVerNumBuf;
osCcxVerNum.Length = sizeof(CcxVerNumBuf);
tag = skb_put(skb, cxvernum_ie_len);
*tag++ = MFIE_TYPE_GENERIC;
*tag++ = osCcxVerNum.Length;
- memcpy(tag, osCcxVerNum.Octet, osCcxVerNum.Length);
+ memcpy(tag, osCcxVerNum.octet, osCcxVerNum.Length);
tag += osCcxVerNum.Length;
}
if (ieee->ht_info->current_ht_support && ieee->ht_info->enable_ht) {
--
2.39.2
next prev parent reply other threads:[~2024-01-24 22:45 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-24 22:44 [PATCH 00/18] Staging: rtl8192e: 18 Additional checkpatch fixes for rtllib_softmac.c Tree Davies
2024-01-24 22:44 ` [PATCH 01/18] Staging: rtl8192e: Rename variable FirstIe_InScan Tree Davies
2024-01-24 22:44 ` [PATCH 02/18] Staging: rtl8192e: Rename function rtllib_rx_ADDBARsp() Tree Davies
2024-01-24 22:44 ` [PATCH 03/18] Staging: rtl8192e: Rename variable LPSAwakeIntvl_tmp Tree Davies
2024-01-24 22:44 ` [PATCH 04/18] Staging: rtl8192e: Rename variable LPSDelayCnt Tree Davies
2024-01-24 22:44 ` [PATCH 05/18] Staging: rtl8192e: Rename function pointer SetHwRegHandler() Tree Davies
2024-01-24 22:44 ` [PATCH 06/18] Staging: rtl8192e: Rename function MgntQuery_TxRateExcludeCCKRates() Tree Davies
2024-01-24 22:44 ` [PATCH 07/18] Staging: rtl8192e: Rename variable PeerHTCapBuf Tree Davies
2024-01-24 22:44 ` [PATCH 08/18] Staging: rtl8192e: Rename variable PeerHTInfoBuf Tree Davies
2024-01-24 22:44 ` [PATCH 09/18] Staging: rtl8192e: Rename variable LPSAwakeIntvl Tree Davies
2024-01-24 22:44 ` [PATCH 10/18] Staging: rtl8192e: Rename variable SelfHTCap Tree Davies
2024-01-24 22:44 ` [PATCH 11/18] Staging: rtl8192e: Fix paren alignment for rtllib_disable_net_monitor_mode() Tree Davies
2024-01-24 22:44 ` [PATCH 12/18] Staging: rtl8192e: Fixup if statement broken across multiple lines Tree Davies
2024-01-24 22:44 ` [PATCH 13/18] Staging: rtl8192e: Remove unecessary blank line Tree Davies
2024-01-24 22:44 ` [PATCH 14/18] Staging: rtl8192e: Fix if statement alignment with open parenthesis Tree Davies
2024-01-24 22:44 ` Tree Davies [this message]
2024-01-24 22:44 ` [PATCH 16/18] Staging: rtl8192e: Rename variable LpsIdleCount Tree Davies
2024-01-24 22:44 ` [PATCH 17/18] Staging: rtl8192e: Rename variable NumRecvBcnInPeriod Tree Davies
2024-01-24 22:44 ` [PATCH 18/18] Staging: rtl8192e: Rename variable bForcedBgMode Tree Davies
2024-01-26 18:23 ` [PATCH 00/18] Staging: rtl8192e: 18 Additional checkpatch fixes for rtllib_softmac.c Philipp Hortmann
2024-01-26 22:05 ` <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=20240124224452.968724-16-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