mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8723bs: Fix spacing around ternary operator in sdio_intf.c
@ 2026-07-15 17:06 Amin Madani
  0 siblings, 0 replies; only message in thread
From: Amin Madani @ 2026-07-15 17:06 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Amin Madani

Add spaces around '?' and ':' in the return statement in sdio_intf.c
according to the Linux kernel coding style.

Signed-off-by: Amin Madani <aminmadani112@gmail.com>
---
 drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
index c43a0391a..5a257b38a 100644
--- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
+++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
@@ -78,7 +78,7 @@ static int sdio_alloc_irq(struct dvobj_priv *dvobj)
 
 	sdio_release_host(func);
 
-	return err?_FAIL:_SUCCESS;
+	return err ? _FAIL : _SUCCESS;
 }
 
 static void sdio_free_irq(struct dvobj_priv *dvobj)
-- 
2.53.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-15 17:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-15 17:06 [PATCH] staging: rtl8723bs: Fix spacing around ternary operator in sdio_intf.c Amin Madani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox