* [PATCH v3] staging: rtl8723bs: remove unnecessary braces for single statement
@ 2026-03-14 8:34 Marcos Andrade
2026-03-14 21:00 ` Ethan Tidmore
0 siblings, 1 reply; 2+ messages in thread
From: Marcos Andrade @ 2026-03-14 8:34 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Marcos Andrade
Remove unnecessary braces for a single statement block in an if
condition to comply with the Linux kernel coding style.
This resolves a checkpacth.pl warning.
Signed-off-by: Marcos Andrade <marcosandrade95963@gmail.com>
---
Changes in v3:
- Add missing change log as requested by GKH.
Changes in v2:
- Remove unnecessary braces in os_dep/sdio_intf.c to comply with
the Linux kernel coding style.
drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
index d664e2549..a86252cca 100644
--- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
+++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
@@ -146,9 +146,8 @@ static void sdio_deinit(struct dvobj_priv *dvobj)
sdio_claim_host(func);
sdio_disable_func(func);
- if (dvobj->irq_alloc) {
+ if (dvobj->irq_alloc)
sdio_release_irq(func);
- }
sdio_release_host(func);
}
--
2.53.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] staging: rtl8723bs: remove unnecessary braces for single statement
2026-03-14 8:34 [PATCH v3] staging: rtl8723bs: remove unnecessary braces for single statement Marcos Andrade
@ 2026-03-14 21:00 ` Ethan Tidmore
0 siblings, 0 replies; 2+ messages in thread
From: Ethan Tidmore @ 2026-03-14 21:00 UTC (permalink / raw)
To: Marcos Andrade, Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel
On Sat Mar 14, 2026 at 3:34 AM CDT, Marcos Andrade wrote:
> Remove unnecessary braces for a single statement block in an if
> condition to comply with the Linux kernel coding style.
> This resolves a checkpacth.pl warning.
You misspelt checkpatch.pl.
Thanks,
ET
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-14 21:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-14 8:34 [PATCH v3] staging: rtl8723bs: remove unnecessary braces for single statement Marcos Andrade
2026-03-14 21:00 ` Ethan Tidmore
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox