From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Andria Shengelia <shengeliaandria9@gmail.com>
Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging: rtl8723bs: rtw_ap: fix line wrapping and logical continuation checks
Date: Tue, 1 Sep 2026 11:59:08 +0200 [thread overview]
Message-ID: <2026090153-heaviness-computing-998b@gregkh> (raw)
In-Reply-To: <20260809144355.161212-1-shengeliaandria9@gmail.com>
On Sun, Aug 09, 2026 at 06:43:55PM +0400, Andria Shengelia wrote:
> Reformat multi-line conditional expression wrapping in rtw_ap.c to fix
> checkpatch.pl checks regarding logical continuations being placed at the
> beginning of lines and lines ending with opening parentheses.
>
> Signed-off-by: Andria Shengelia <shengeliaandria9@gmail.com>
> ---
> drivers/staging/rtl8723bs/core/rtw_ap.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c b/drivers/staging/rtl8723bs/core/rtw_ap.c
> index a6dc88dd4..9c14ba1dc 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_ap.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_ap.c
> @@ -258,11 +258,9 @@ void expire_timeout_chk(struct adapter *padapter)
> } else {
> /* TODO: Aging mechanism to digest frames in sleep_q to */
> /* avoid running out of xmitframe */
> - if (psta->sleepq_len > (NR_XMITFRAME / pstapriv->asoc_list_cnt)
> - && padapter->xmitpriv.free_xmitframe_cnt < ((
> - NR_XMITFRAME / pstapriv->asoc_list_cnt
> - ) / 2)
> - )
> + if (psta->sleepq_len > (NR_XMITFRAME / pstapriv->asoc_list_cnt) &&
> + padapter->xmitpriv.free_xmitframe_cnt <
> + (NR_XMITFRAME / pstapriv->asoc_list_cnt) / 2)
> wakeup_sta_to_xmit(padapter, psta);
> }
> }
> --
> 2.55.0
>
>
Does not apply to the current staging-testing branch :(
Please rebase and resend.
thanks,
greg k-h
prev parent reply other threads:[~2026-09-01 9:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-09 14:43 [PATCH] staging: rtl8723bs: rtw_ap: fix line wrapping and logical continuation checks Andria Shengelia
2026-09-01 9:59 ` Greg Kroah-Hartman [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=2026090153-heaviness-computing-998b@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=shengeliaandria9@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.