Re: [PATCH v3 2/2] staging: rtl8723bs: convert single-line comment to multi-line format
From: Greg KH
Date: Tue Feb 24 2026 - 13:08:10 EST
On Mon, Feb 23, 2026 at 11:25:47PM -0600, Ethan Tidmore wrote:
> 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 ...
> * ...
> */
Except for the network stack/drivers. So this _is_ correct, as this is
a network driver.
thanks,
greg k-h