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>
---
Changes in v2:
- Moved closing ')' to the previous line as suggested by Greg Kroah-Hartman.
- Thanks for the review and feedback!
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 09:30:37PM +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. Please wrap your changelog text at 72 columns, like checkpatch asks you to. > > Signed-off-by: Bruce Qin <bqn9090@gmail.com> > --- > Changes in v2: > - Moved closing ')' to the previous line as suggested by Greg Kroah-Hartman. > - Thanks for the review and feedback! You sent 3 copies of this "v2" patch, how do I know which one is correct? Please fix up and send a v3. thanks, greg k-h
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>
---
Changes in v3:
- Wrapped commit message lines at 72 columns (checkpatch warning resolved).
- Ensured only one copy is submitted (per Greg's feedback).
- Carried forward the fix from v2 (closing ')' adjustment
as suggested by Greg).
- Thanks again to Greg Kroah-Hartman for the helpful review!
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
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>
---
Changes in v4:
- Rewrapped several commit message lines to strictly follow the
72-column limit.
- checkpatch.pl allows up to 75 columns, which led to the initial
oversight in v3.
- Added back the missing v2 changelog that was accidentally
omitted in v3.
- No code changes; only updated the commit message formatting for
full compliance.
Changes in v3:
- Wrapped commit message lines at 72 columns (checkpatch warning
resolved).
- Ensured only one copy is submitted (per Greg's feedback).
- Carried forward the fix from v2 (closing ')' adjustment as
suggested by Greg).
- Thanks again to Greg Kroah-Hartman for the helpful review!
Changes in v2:
- Moved closing ')' to the previous line as suggested by Greg
Kroah-Hartman.
- Thanks for the review and feedback!
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
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>
---
Changes in v5:
- Fixed incorrect recipient address in v4
(sent to self instead of Greg KH).
- No code or commit message changes.
Changes in v4:
- Rewrapped several commit message lines to strictly follow the
72-column limit.
- checkpatch.pl allows up to 75 columns, which led to the initial
oversight in v3.
- Added back the missing v2 changelog that was accidentally
omitted in v3.
- No code changes; only updated the commit message formatting for
full compliance.
Changes in v3:
- Wrapped commit message lines at 72 columns (checkpatch warning
resolved).
- Ensured only one copy is submitted (per Greg's feedback).
- Carried forward the fix from v2 (closing ')' adjustment as
suggested by Greg).
- Thanks again to Greg Kroah-Hartman for the helpful review!
Changes in v2:
- Moved closing ')' to the previous line as suggested by Greg
Kroah-Hartman.
- Thanks for the review and feedback!
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
© 2016 - 2025 Red Hat, Inc.