drivers/staging/rtl8723bs/core/rtw_ap.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-)
This patch fixes several style issues in a multiline if-statement:
- Moved '&&' to the end of the previous line to follow logical continuation style
- Fixed indentation to align with the opening parenthesis of the expression
- Avoided ending a line with an open parenthesis '('
- Moved closing ')' to the end of the last expression line (as suggested by the maintainer)
These changes improve readability and conform to Linux kernel coding conventions.
No functional changes.
Signed-off-by: Bruce Qin <bqn9090@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 383a6f7c06f4..c652e0cd35f3 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.43.0
On Thu, Jul 24, 2025 at 07:17:14PM +0200, Bruce Qin wrote: > This patch fixes several style issues in a multiline if-statement: > > - Moved '&&' to the end of the previous line to follow logical continuation style > - Fixed indentation to align with the opening parenthesis of the expression > - Avoided ending a line with an open parenthesis '(' > - Moved closing ')' to the end of the last expression line (as suggested by the maintainer) > > These changes improve readability and conform to Linux kernel coding conventions. > No functional changes. > > Signed-off-by: Bruce Qin <bqn9090@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 383a6f7c06f4..c652e0cd35f3 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.43.0 > > Hi, This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him a patch that has triggered this response. He used to manually respond to these common problems, but in order to save his sanity (he kept writing the same thing over and over, yet to different people), I was created. Hopefully you will not take offence and will fix the problem in your patch and resubmit it so that it can be accepted into the Linux kernel tree. You are receiving this message because of the following common error(s) as indicated below: - This looks like a new version of a previously submitted patch, but you did not list below the --- line any changes from the previous version. Please read the section entitled "The canonical patch format" in the kernel file, Documentation/process/submitting-patches.rst for what needs to be done here to properly describe this. If you wish to discuss this problem further, or you have questions about how to resolve this issue, please feel free to respond to this email and Greg will reply once he has dug out from the pending patches received from other developers. thanks, greg k-h's patch email bot
© 2016 - 2025 Red Hat, Inc.