From: "Ethan Tidmore" <ethantidmore06@gmail.com>
To: "Matthew Marsico" <mattmarsico1@gmail.com>, <gregkh@linuxfoundation.org>
Cc: <linux-staging@lists.linux.dev>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] staging: rtl8723bs: improve comment placement and readability
Date: Mon, 09 Feb 2026 16:38:09 -0600 [thread overview]
Message-ID: <DGASI1BELRMN.OCCUPYE9KJBE@gmail.com> (raw)
In-Reply-To: <20260208225648.11207-1-mattmarsico1@gmail.com>
On Sun Feb 8, 2026 at 4:56 PM CST, Matthew Marsico wrote:
> Move trailing comments onto their own line, preceding
> the referenced code, and rework them to improve
> readability. No functional change.
>
> Signed-off-by: Matthew Marsico <mattmarsico1@gmail.com>
> ---
> drivers/staging/rtl8723bs/core/rtw_ioctl_set.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c b/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c
> index 587a87fbffeb..fa3b4be11ab2 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_ioctl_set.c
> @@ -174,7 +174,9 @@ u8 rtw_set_802_11_ssid(struct adapter *padapter, struct ndis_802_11_ssid *ssid)
> set_fwstate(pmlmepriv, WIFI_ADHOC_STATE);
> }
> } else {
> - goto release_mlme_lock;/* it means driver is in WIFI_ADHOC_MASTER_STATE, we needn't create bss again. */
> + /* Driver is already in WIFI_ADHOC_MASTER_STATE, */
> + /* do not create BSS again. */
The linux kernel coding style wants multiple line comments to look like
this:
/*
* Driver is already in WIFI_ADHOC_MASTER_STATE,
* do not create BSS again.
*/
Please consult Documentation/process/coding-style.rst under Commenting
to get more examples.
> + goto release_mlme_lock;
> }
> } else {
> rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_JOINBSS, 1);
> @@ -310,7 +312,9 @@ u8 rtw_set_802_11_infrastructure_mode(struct adapter *padapter,
>
> if ((*pold_state == Ndis802_11Infrastructure) || (*pold_state == Ndis802_11IBSS)) {
> if (check_fwstate(pmlmepriv, _FW_LINKED) == true)
> - rtw_indicate_disconnect(padapter); /* will clr Linked_state; before this function, we must have checked whether issue dis-assoc_cmd or not */
> + /* Will clear Linked_state */
> + /* Disassociation has already been handled above */
> + rtw_indicate_disconnect(padapter);
> }
>
> *pold_state = networktype;
Thanks,
ET
prev parent reply other threads:[~2026-02-09 22:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-08 22:56 [PATCH] staging: rtl8723bs: improve comment placement and readability Matthew Marsico
2026-02-09 22:38 ` Ethan Tidmore [this message]
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=DGASI1BELRMN.OCCUPYE9KJBE@gmail.com \
--to=ethantidmore06@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=mattmarsico1@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