From: Max Raulea <max.raulea@gmail.com>
To: linux-staging@lists.linux.dev
Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org
Subject: [PATCH] staging: rtl8723bs: rename camelcase variable psurveyPara
Date: Mon, 27 Jul 2026 15:52:33 +0200 [thread overview]
Message-ID: <amdioVP1iDimngb5@archlinux> (raw)
Reported style issue by checkpatch in the rtl8723bs driver.
changed the variable name to psurvey_para to adhere to Linux Kernel
coding style.
Signed-off-by: Max Raulea <max.raulea@gmail.com>
---
drivers/staging/rtl8723bs/core/rtw_cmd.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/rtl8723bs/core/rtw_cmd.c b/drivers/staging/rtl8723bs/core/rtw_cmd.c
index d8ad1c75195b..6304b218bc2d 100644
--- a/drivers/staging/rtl8723bs/core/rtw_cmd.c
+++ b/drivers/staging/rtl8723bs/core/rtw_cmd.c
@@ -525,7 +525,7 @@ u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid,
{
u8 res = _FAIL;
struct cmd_obj *ph2c;
- struct sitesurvey_parm *psurveyPara;
+ struct sitesurvey_parm *psurvey_para;
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
@@ -536,18 +536,18 @@ u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid,
if (!ph2c)
return _FAIL;
- psurveyPara = kzalloc_obj(*psurveyPara, GFP_ATOMIC);
- if (!psurveyPara) {
+ psurvey_para = kzalloc_obj(*psurvey_para, GFP_ATOMIC);
+ if (!psurvey_para) {
kfree(ph2c);
return _FAIL;
}
rtw_free_network_queue(padapter, false);
- init_h2fwcmd_w_parm_no_rsp(ph2c, psurveyPara, SITE_SURVEY_CMD);
+ init_h2fwcmd_w_parm_no_rsp(ph2c, psurvey_para, SITE_SURVEY_CMD);
/* psurveyPara->bsslimit = 48; */
- psurveyPara->scan_mode = pmlmepriv->scan_mode;
+ psurvey_para->scan_mode = pmlmepriv->scan_mode;
/* prepare ssid list */
if (ssid) {
@@ -555,8 +555,8 @@ u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid,
for (i = 0; i < ssid_num && i < RTW_SSID_SCAN_AMOUNT; i++) {
if (ssid[i].ssid_length) {
- memcpy(&psurveyPara->ssid[i], &ssid[i], sizeof(struct ndis_802_11_ssid));
- psurveyPara->ssid_num++;
+ memcpy(&psurvey_para->ssid[i], &ssid[i], sizeof(struct ndis_802_11_ssid));
+ psurvey_para->ssid_num++;
}
}
}
@@ -567,8 +567,8 @@ u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid,
for (i = 0; i < ch_num && i < RTW_CHANNEL_SCAN_AMOUNT; i++) {
if (ch[i].hw_value && !(ch[i].flags & RTW_IEEE80211_CHAN_DISABLED)) {
- memcpy(&psurveyPara->ch[i], &ch[i], sizeof(struct rtw_ieee80211_channel));
- psurveyPara->ch_num++;
+ memcpy(&psurvey_para->ch[i], &ch[i], sizeof(struct rtw_ieee80211_channel));
+ psurvey_para->ch_num++;
}
}
}
--
2.55.0
next reply other threads:[~2026-07-27 13:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-27 13:52 Max Raulea [this message]
2026-07-27 14:49 ` [PATCH] staging: rtl8723bs: rename camelcase variable psurveyPara 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=amdioVP1iDimngb5@archlinux \
--to=max.raulea@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
/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;
as well as URLs for NNTP newsgroup(s).