[PATCH v2 2/3] staging: rtl8723bs: fix spacing around conditional operators

From: Vitaliy Slivinskiy

Date: Fri May 29 2026 - 06:07:46 EST


Fix checkpatch.pl warning regarding missing spaces around the ternary operator.

Signed-off-by: Vitaliy Slivinskiy <phant0m.mail2023@xxxxxxxxx>
---
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 f0aa5bc8a..9d936b834 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