public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8723bs: place constant on right side of equality operator
@ 2026-03-21  9:25 Prithvi Tambewagh
  2026-03-23  9:19 ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Prithvi Tambewagh @ 2026-03-21  9:25 UTC (permalink / raw)
  To: gregkh, straube.linux, ethantidmore06, dan.carpenter,
	andriy.shevchenko
  Cc: linux-staging, linux-kernel, linux-kernel-mentees, skhan,
	david.hunter.linux, khalid, Prithvi Tambewagh

Place constant 0xFF on right side of equality operator when checking
value of hw_channel_plan to fix checkpatch.pl warning and conform with
the Linux Kernel coding style.

Signed-off-by: Prithvi Tambewagh <activprithvi@gmail.com>
---
 drivers/staging/rtl8723bs/hal/hal_com.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c
index 31b3e880ae6a..597ba3d283c1 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com.c
@@ -107,7 +107,7 @@ u8 hal_com_config_channel_plan(
 	pHalData->bDisableSWChannelPlan = false;
 	chnlPlan = def_channel_plan;
 
-	if (0xFF == hw_channel_plan)
+	if (hw_channel_plan == 0xFF)
 		AutoLoadFail = true;
 
 	if (!AutoLoadFail) {

base-commit: 42bddab0563fe67882b2722620a66dd98c8dbf33
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-03-23 14:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-21  9:25 [PATCH] staging: rtl8723bs: place constant on right side of equality operator Prithvi Tambewagh
2026-03-23  9:19 ` Andy Shevchenko
2026-03-23 13:22   ` Prithvi
2026-03-23 13:33     ` Andy Shevchenko
2026-03-23 14:52       ` Prithvi

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