Re: [PATCH v3 2/2] staging: rtl8723bs: convert single-line comment to multi-line format

From: Ethan Tidmore

Date: Tue Feb 24 2026 - 00:26:14 EST


On Mon Feb 23, 2026 at 2:00 PM CST, tomasz.unger wrote:
> From: Tomasz Unger <tomasz.unger@xxxxxxxx>
>
> Convert a long single-line comment to multi-line format
> as per coding-style.rst.
>
> Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
> ---
> v3: Split into two separate patches as requested by Greg Kroah-Hartman.
> v2: Added multi-line comment format, changed to codespell.
>
> drivers/staging/rtl8723bs/core/rtw_wlan_util.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
> index 74c31a97f093..cffb1a9d36fa 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
> @@ -597,7 +597,9 @@ s16 rtw_camid_alloc(struct adapter *adapter, struct sta_info *sta, u8 kid)
>
> i = _rtw_camid_search(adapter, addr, kid);
> if (i >= 0) {
> - /* Fix issue that pairwise and group key have same key id. Pairwise key first, group key can overwrite group only(ex: rekey) */
> + /* Fix issue that pairwise and group key have same key id.
> + * Pairwise key first, group key can overwrite group only(ex: rekey)
> + */

Almost, the correct format is this:

/*
* Fix issue ...
* ...
*/

Thanks,

ET