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 13/18] Staging: rtl8192e: Rename variable bToSelfBA
Date: Mon, 16 Sep 2024 22:31:47 -0700 [thread overview]
Message-ID: <20240917053152.575553-14-tdavies@darkphysics.net> (raw)
In-Reply-To: <20240917053152.575553-1-tdavies@darkphysics.net>
Rename variable bToSelfBA to to_self_ba
to fix checkpatch warning Avoid CamelCase.
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
---
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c | 16 ++++++++--------
drivers/staging/rtl8192e/rtllib.h | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
index 873c749250ae..2e3e8c57d6f0 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
@@ -1153,7 +1153,7 @@ static void _rtl92e_query_rxphystatus(struct r8192_priv *priv,
bool bpacket_match_bssid,
bool bpacket_toself,
bool packet_beacon,
- bool bToSelfBA)
+ bool to_self_ba)
{
struct phy_sts_ofdm_819xpci *pofdm_buf;
struct phy_sts_cck_819xpci *pcck_buf;
@@ -1175,7 +1175,7 @@ static void _rtl92e_query_rxphystatus(struct r8192_priv *priv,
pstats->packet_to_self = precord_stats->packet_to_self = bpacket_toself;
pstats->is_cck = precord_stats->is_cck = is_cck_rate;
pstats->packet_beacon = precord_stats->packet_beacon = packet_beacon;
- pstats->bToSelfBA = precord_stats->bToSelfBA = bToSelfBA;
+ pstats->to_self_ba = precord_stats->to_self_ba = to_self_ba;
if (check_reg824 == 0) {
reg824_bit9 = rtl92e_get_bb_reg(priv->rtllib->dev,
rFPGA0_XA_HSSIParameter2,
@@ -1363,7 +1363,7 @@ static void _rtl92e_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
priv->stats.signal_strength = rtl92e_translate_to_dbm(priv, tmp_val);
curr_st->rssi = priv->stats.signal_strength;
if (!prev_st->packet_match_bssid) {
- if (!prev_st->bToSelfBA)
+ if (!prev_st->to_self_ba)
return;
}
@@ -1417,7 +1417,7 @@ static void _rtl92e_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
prev_st->RxPWDBAll -= 3;
}
if (prev_st->packet_to_self || prev_st->packet_beacon ||
- prev_st->bToSelfBA) {
+ prev_st->to_self_ba) {
if (priv->undecorated_smoothed_pwdb < 0)
priv->undecorated_smoothed_pwdb = prev_st->RxPWDBAll;
if (prev_st->RxPWDBAll > (u32)priv->undecorated_smoothed_pwdb) {
@@ -1438,7 +1438,7 @@ static void _rtl92e_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
if (prev_st->signal_quality != 0) {
if (prev_st->packet_to_self || prev_st->packet_beacon ||
- prev_st->bToSelfBA) {
+ prev_st->to_self_ba) {
if (slide_evm_statistics++ >= PHY_RSSI_SLID_WIN_MAX) {
slide_evm_statistics = PHY_RSSI_SLID_WIN_MAX;
last_evm =
@@ -1460,7 +1460,7 @@ static void _rtl92e_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
if (prev_st->packet_to_self ||
prev_st->packet_beacon ||
- prev_st->bToSelfBA) {
+ prev_st->to_self_ba) {
for (ij = 0; ij < 2; ij++) {
if (prev_st->RxMIMOSignalQuality[ij] != -1) {
if (priv->stats.rx_evm_percentage[ij] == 0)
@@ -1487,7 +1487,7 @@ static void _rtl92e_translate_rx_signal_stats(struct net_device *dev,
bool bpacket_match_bssid, bpacket_toself;
bool packet_beacon = false;
struct ieee80211_hdr_3addr *hdr;
- bool bToSelfBA = false;
+ bool to_self_ba = false;
static struct rtllib_rx_stats previous_stats;
u16 fc, type;
u8 *tmp_buf;
@@ -1514,7 +1514,7 @@ static void _rtl92e_translate_rx_signal_stats(struct net_device *dev,
_rtl92e_process_phyinfo(priv, tmp_buf, &previous_stats, pstats);
_rtl92e_query_rxphystatus(priv, pstats, pdesc, pdrvinfo,
&previous_stats, bpacket_match_bssid,
- bpacket_toself, packet_beacon, bToSelfBA);
+ bpacket_toself, packet_beacon, to_self_ba);
rtl92e_copy_mpdu_stats(pstats, &previous_stats);
}
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h
index 4055c3044fe9..315a75739e44 100644
--- a/drivers/staging/rtl8192e/rtllib.h
+++ b/drivers/staging/rtl8192e/rtllib.h
@@ -486,7 +486,7 @@ struct rtllib_rx_stats {
bool is_cck;
bool packet_to_self;
bool packet_beacon;
- bool bToSelfBA;
+ bool to_self_ba;
};
/* IEEE 802.11 requires that STA supports concurrent reception of at least
--
2.30.2
next prev parent reply other threads:[~2024-09-17 5:32 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-17 5:31 [PATCH 00/18] Staging: rtl8192e: 18 more Style guide variable renames Tree Davies
2024-09-17 5:31 ` [PATCH 01/18] Staging: rtl8192e: Rename variable nDataRate Tree Davies
2024-09-17 19:32 ` philipp hortmann
2024-09-17 20:00 ` philipp hortmann
2024-09-18 10:35 ` Dan Carpenter
2024-09-17 5:31 ` [PATCH 02/18] Staging: rtl8192e: Rename variable bIsCCK Tree Davies
2024-09-17 5:31 ` [PATCH 03/18] Staging: rtl8192e: Rename variable bCRC Tree Davies
2024-09-17 5:31 ` [PATCH 04/18] Staging: rtl8192e: Rename variable pMCSRateSet Tree Davies
2024-09-17 5:31 ` [PATCH 05/18] Staging: rtl8192e: Rename variable PreCommonCmd Tree Davies
2024-09-17 5:31 ` [PATCH 06/18] Staging: rtl8192e: Rename variable PostCommonCmd Tree Davies
2024-09-17 5:31 ` [PATCH 07/18] Staging: rtl8192e: Rename variable RxDataNum Tree Davies
2024-09-17 5:31 ` [PATCH 08/18] Staging: rtl8192e: Rename variable FwRWRF Tree Davies
2024-09-17 5:31 ` [PATCH 09/18] Staging: rtl8192e: Rename variable bFirstMPDU Tree Davies
2024-09-17 5:31 ` [PATCH 10/18] Staging: rtl8192e: Rename variable bPacketBeacon Tree Davies
2024-09-17 5:31 ` [PATCH 11/18] Staging: rtl8192e: Rename variable Rx_TS_Pending_List Tree Davies
2024-09-17 5:31 ` [PATCH 12/18] Staging: rtl8192e: Rename variable bPacketMatchBSSID Tree Davies
2024-09-17 5:31 ` Tree Davies [this message]
2024-09-17 5:31 ` [PATCH 14/18] Staging: rtl8192e: Rename variable Tx_TS_Admit_List Tree Davies
2024-09-17 5:31 ` [PATCH 15/18] Staging: rtl8192e: Rename variable Tx_TS_Pending_List Tree Davies
2024-09-17 5:31 ` [PATCH 16/18] Staging: rtl8192e: Rename variable Tx_TS_Unused_List Tree Davies
2024-09-17 5:31 ` [PATCH 17/18] Staging: rtl8192e: Rename variable Sbox Tree Davies
2024-09-17 5:31 ` [PATCH 18/18] Staging: rtl8192e: Rename variable pMCSFilter Tree Davies
2024-09-17 20:05 ` [PATCH 00/18] Staging: rtl8192e: 18 more Style guide variable renames philipp hortmann
2024-10-09 9:53 ` Greg KH
[not found] ` <e0cdfdd3-eebb-40c5-a845-fbc5e52364d5@darkphysics.net>
2024-10-11 3:21 ` Greg KH
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=20240917053152.575553-14-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