* [PATCH v2 0/2] iio: frequency: ad9832: cleanups
@ 2026-04-11 8:44 Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 1/2] iio: frequency: ad9832: remove kernel.h proxy header Joshua Crofts
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Joshua Crofts @ 2026-04-11 8:44 UTC (permalink / raw)
To: lars, Michael.Hennerich, jic23, gregkh
Cc: dlechner, nuno.sa, andy, linux-iio, linux-staging, linux-kernel,
Joshua Crofts
This series cleans up issues in the AD9832 driver,
including proxy header removal and bit math
simplification.
v2:
- PATCH 1: removed redundant bits.h include as it
is implied in bitops.h
- PATCH 2: changed ull to u64 type
Joshua Crofts (2):
iio: frequency: ad9832: remove kernel.h proxy header.
iio: frequency: ad9832: simplify bitwise math
drivers/staging/iio/frequency/ad9832.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] iio: frequency: ad9832: remove kernel.h proxy header.
2026-04-11 8:44 [PATCH v2 0/2] iio: frequency: ad9832: cleanups Joshua Crofts
@ 2026-04-11 8:44 ` Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 2/2] iio: frequency: ad9832: simplify bitwise math Joshua Crofts
2026-04-11 12:43 ` [PATCH v2 0/2] iio: frequency: ad9832: cleanups Nuno Sá
2 siblings, 0 replies; 4+ messages in thread
From: Joshua Crofts @ 2026-04-11 8:44 UTC (permalink / raw)
To: lars, Michael.Hennerich, jic23, gregkh
Cc: dlechner, nuno.sa, andy, linux-iio, linux-staging, linux-kernel,
Joshua Crofts
Remove kernel.h proxy header and add bitops.h for
better dependency control and code clarity.
Signed-off-by: Joshua Crofts <joshua.crofts1@gmail.com>
---
v2:
- removed redundant bits.h header
drivers/staging/iio/frequency/ad9832.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/iio/frequency/ad9832.c b/drivers/staging/iio/frequency/ad9832.c
index b87ea1781b..8873a6d11e 100644
--- a/drivers/staging/iio/frequency/ad9832.c
+++ b/drivers/staging/iio/frequency/ad9832.c
@@ -8,11 +8,10 @@
#include <asm/div64.h>
#include <linux/bitfield.h>
-#include <linux/bits.h>
+#include <linux/bitops.h>
#include <linux/clk.h>
#include <linux/device.h>
#include <linux/err.h>
-#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/regulator/consumer.h>
#include <linux/slab.h>
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] iio: frequency: ad9832: simplify bitwise math
2026-04-11 8:44 [PATCH v2 0/2] iio: frequency: ad9832: cleanups Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 1/2] iio: frequency: ad9832: remove kernel.h proxy header Joshua Crofts
@ 2026-04-11 8:44 ` Joshua Crofts
2026-04-11 12:43 ` [PATCH v2 0/2] iio: frequency: ad9832: cleanups Nuno Sá
2 siblings, 0 replies; 4+ messages in thread
From: Joshua Crofts @ 2026-04-11 8:44 UTC (permalink / raw)
To: lars, Michael.Hennerich, jic23, gregkh
Cc: dlechner, nuno.sa, andy, linux-iio, linux-staging, linux-kernel,
Joshua Crofts
Refactor the ad9832_calc_freqreg by adding a BIT_ULL()
macro instead of manual bit shifting for better
readability.
Signed-off-by: Joshua Crofts <joshua.crofts1@gmail.com>
---
v2:
- changed ull to u64 type
drivers/staging/iio/frequency/ad9832.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/iio/frequency/ad9832.c b/drivers/staging/iio/frequency/ad9832.c
index 8873a6d11e..4221e51dc4 100644
--- a/drivers/staging/iio/frequency/ad9832.c
+++ b/drivers/staging/iio/frequency/ad9832.c
@@ -112,8 +112,8 @@ struct ad9832_state {
static unsigned long ad9832_calc_freqreg(unsigned long mclk, unsigned long fout)
{
- unsigned long long freqreg = (u64)fout *
- (u64)((u64)1L << AD9832_FREQ_BITS);
+ u64 freqreg = (u64)fout * BIT_ULL(AD9832_FREQ_BITS)i;
+
do_div(freqreg, mclk);
return freqreg;
}
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 0/2] iio: frequency: ad9832: cleanups
2026-04-11 8:44 [PATCH v2 0/2] iio: frequency: ad9832: cleanups Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 1/2] iio: frequency: ad9832: remove kernel.h proxy header Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 2/2] iio: frequency: ad9832: simplify bitwise math Joshua Crofts
@ 2026-04-11 12:43 ` Nuno Sá
2 siblings, 0 replies; 4+ messages in thread
From: Nuno Sá @ 2026-04-11 12:43 UTC (permalink / raw)
To: Joshua Crofts, lars, Michael.Hennerich, jic23, gregkh
Cc: dlechner, nuno.sa, andy, linux-iio, linux-staging, linux-kernel
On Sat, 2026-04-11 at 10:44 +0200, Joshua Crofts wrote:
> This series cleans up issues in the AD9832 driver,
> including proxy header removal and bit math
> simplification.
>
> v2:
> - PATCH 1: removed redundant bits.h include as it
> is implied in bitops.h
> - PATCH 2: changed ull to u64 type
>
> Joshua Crofts (2):
> iio: frequency: ad9832: remove kernel.h proxy header.
> iio: frequency: ad9832: simplify bitwise math
>
> drivers/staging/iio/frequency/ad9832.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
Reviewed-by: Nuno Sá <nuno.sa@analog.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-11 13:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-11 8:44 [PATCH v2 0/2] iio: frequency: ad9832: cleanups Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 1/2] iio: frequency: ad9832: remove kernel.h proxy header Joshua Crofts
2026-04-11 8:44 ` [PATCH v2 2/2] iio: frequency: ad9832: simplify bitwise math Joshua Crofts
2026-04-11 12:43 ` [PATCH v2 0/2] iio: frequency: ad9832: cleanups Nuno Sá
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®