]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
staging: rtl8723bs: fix if-statement alignment and line continuation in rtw_ap.c
authorBruce Qin <bqn9090@gmail.com>
Thu, 24 Jul 2025 19:25:33 +0000 (21:25 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 11 Aug 2025 05:21:21 +0000 (07:21 +0200)
commit520c9fde09b557559fe512cc5b2ba689cd08567e
tree0614200460be1b0abfd71fd9443e1bcd8cad239f
parent5225c689dd9048b67ddf3044da68cc17ab1aa04e
staging: rtl8723bs: fix if-statement alignment and line continuation in rtw_ap.c

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>
Link: https://lore.kernel.org/r/20250724192533.21141-1-bqn9090@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ap.c