mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] wifi: morsemicro: mm81x: get rid of code duplications
@ 2026-09-25 19:59 Yury Norov
  2026-09-25 19:59 ` [PATCH 1/2] wifi: morsemicro: mm81x: switch to use fns() Yury Norov
  2026-09-25 19:59 ` [PATCH 2/2] wifi: morsemicro: mm81x: use hweight16() to calculate bit index Yury Norov
  0 siblings, 2 replies; 3+ messages in thread
From: Yury Norov @ 2026-09-25 19:59 UTC (permalink / raw)
  To: Lachlan Hodges, Dan Callaghan, Johannes Berg, Arien Judge,
	linux-wireless, linux-kernel
  Cc: Yury Norov, Yury Norov

Get rid of nth_bit() duplicating the generic fns(), and drop opencoded 
hweight16() in bit_index().

Yury Norov (2):
  wifi: morsemicro: mm81x: switch to use fns()
  wifi: morsemicro: mm81x: use hweight16() to calculate bit index

 drivers/net/wireless/morsemicro/mm81x/mmrc.c | 34 ++++----------------
 1 file changed, 7 insertions(+), 27 deletions(-)

-- 
2.53.0


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

* [PATCH 1/2] wifi: morsemicro: mm81x: switch to use fns()
  2026-09-25 19:59 [PATCH 0/2] wifi: morsemicro: mm81x: get rid of code duplications Yury Norov
@ 2026-09-25 19:59 ` Yury Norov
  2026-09-25 19:59 ` [PATCH 2/2] wifi: morsemicro: mm81x: use hweight16() to calculate bit index Yury Norov
  1 sibling, 0 replies; 3+ messages in thread
From: Yury Norov @ 2026-09-25 19:59 UTC (permalink / raw)
  To: Lachlan Hodges, Dan Callaghan, Johannes Berg, Arien Judge,
	linux-wireless, linux-kernel
  Cc: Yury Norov, Yury Norov

Replace the local nth_bit() helper with fns(), which provides the same
zero-based set-bit selection for rate capability masks.

Signed-off-by: Yury Norov <ynorov@nvidia.com>
---
 drivers/net/wireless/morsemicro/mm81x/mmrc.c | 26 +++++---------------
 1 file changed, 6 insertions(+), 20 deletions(-)

diff --git a/drivers/net/wireless/morsemicro/mm81x/mmrc.c b/drivers/net/wireless/morsemicro/mm81x/mmrc.c
index fe7e4f501d6c..4cbc35535e07 100644
--- a/drivers/net/wireless/morsemicro/mm81x/mmrc.c
+++ b/drivers/net/wireless/morsemicro/mm81x/mmrc.c
@@ -2,6 +2,8 @@
 /*
  * Copyright (c) 2017-2026 Morse Micro
  */
+#include <linux/bitops.h>
+
 #include "mmrc.h"
 
 /*
@@ -198,22 +200,6 @@
  */
 static const u32 sym_table[10] = { 24, 36, 48, 72, 96, 144, 192, 216, 256, 288 };
 
-/*
- * Calculate which bit is the nth bit set in an integer based flag.
- */
-static u8 nth_bit(u16 in, u16 index)
-{
-	u32 i;
-	u8 count = 0;
-
-	for (i = 0; count != index + 1; i++) {
-		if (((1u << i) & in) != 0)
-			count++;
-	}
-
-	return i - 1;
-}
-
 /*
  * Calculate the input bit's index among all the set bits in an integer
  * based flag.
@@ -291,19 +277,19 @@ static struct mmrc_rate get_rate_row(struct mmrc_table *tb, u16 index)
 	u16 mcs_index = index / rows;
 	u16 mcs_modulo = index % rows;
 
-	mcs = nth_bit(tb->caps.rates, mcs_index);
+	mcs = fns(tb->caps.rates, mcs_index);
 
 	/* Find our spatial stream */
 	rows = rows / streams;
-	streams = nth_bit(tb->caps.spatial_streams, mcs_modulo / rows);
+	streams = fns(tb->caps.spatial_streams, mcs_modulo / rows);
 
 	/* Find our bandwidth */
 	ss_index = index % rows;
 	rows = rows / bw;
-	bw = nth_bit(tb->caps.bandwidth, ss_index / rows);
+	bw = fns(tb->caps.bandwidth, ss_index / rows);
 
 	/* Find our guard */
-	guard = nth_bit(tb->caps.guard, index % guard);
+	guard = fns(tb->caps.guard, index % guard);
 
 	/* Add range checks to keep scan-build happy */
 	if (bw >= MMRC_BW_MAX)
-- 
2.53.0


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

* [PATCH 2/2] wifi: morsemicro: mm81x: use hweight16() to calculate bit index
  2026-09-25 19:59 [PATCH 0/2] wifi: morsemicro: mm81x: get rid of code duplications Yury Norov
  2026-09-25 19:59 ` [PATCH 1/2] wifi: morsemicro: mm81x: switch to use fns() Yury Norov
@ 2026-09-25 19:59 ` Yury Norov
  1 sibling, 0 replies; 3+ messages in thread
From: Yury Norov @ 2026-09-25 19:59 UTC (permalink / raw)
  To: Lachlan Hodges, Dan Callaghan, Johannes Berg, Arien Judge,
	linux-wireless, linux-kernel
  Cc: Yury Norov, Yury Norov

Count the set bits through bit_pos with hweight16() and an inclusive
mask. Preserve the zero fallback and zero-based index.

Signed-off-by: Yury Norov <ynorov@nvidia.com>
---
 drivers/net/wireless/morsemicro/mm81x/mmrc.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/drivers/net/wireless/morsemicro/mm81x/mmrc.c b/drivers/net/wireless/morsemicro/mm81x/mmrc.c
index 4cbc35535e07..6bedcdbcb61f 100644
--- a/drivers/net/wireless/morsemicro/mm81x/mmrc.c
+++ b/drivers/net/wireless/morsemicro/mm81x/mmrc.c
@@ -206,13 +206,7 @@ static const u32 sym_table[10] = { 24, 36, 48, 72, 96, 144, 192, 216, 256, 288 }
  */
 static u16 bit_index(u16 in, u32 bit_pos)
 {
-	u16 i;
-	u16 index = 0;
-
-	for (i = 0; i != bit_pos + 1; i++) {
-		if (((1u << i) & in) != 0)
-			index++;
-	}
+	u16 index = hweight16(in & GENMASK(bit_pos, 0));
 
 	if (index == 0) {
 		/* Could not match bit pos to caps */
-- 
2.53.0


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

end of thread, other threads:[~2026-09-25 19:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-25 19:59 [PATCH 0/2] wifi: morsemicro: mm81x: get rid of code duplications Yury Norov
2026-09-25 19:59 ` [PATCH 1/2] wifi: morsemicro: mm81x: switch to use fns() Yury Norov
2026-09-25 19:59 ` [PATCH 2/2] wifi: morsemicro: mm81x: use hweight16() to calculate bit index Yury Norov

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

all inboxes | Powered by JetHome®