mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] staging: pi433: use div_u64 for 64-bit division
@ 2017-07-28 13:23 Arnd Bergmann
  2017-07-28 14:21 ` Marcus Wolf
  0 siblings, 1 reply; 8+ messages in thread
From: Arnd Bergmann @ 2017-07-28 13:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Arnd Bergmann, Marcus Wolf, devel, linux-kernel

I ran into this link error on an ARM OABI build:

drivers/staging/pi433/rf69.o: In function `rf69_set_frequency':
rf69.c:(.text+0xc9c): undefined reference to `__udivdi3'

No idea why I didn't see it with the default EABI configurations,
but the right solution here seems to be to use div_u64()
to get the external division implementation.

Fixes: 874bcba65f9a ("staging: pi433: New driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/staging/pi433/rf69.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/pi433/rf69.c b/drivers/staging/pi433/rf69.c
index e391ce777bc7..e5267b5638c0 100644
--- a/drivers/staging/pi433/rf69.c
+++ b/drivers/staging/pi433/rf69.c
@@ -238,7 +238,7 @@ int rf69_set_frequency(struct spi_device *spi, u32 frequency)
 	do_div(f_step, 524288); //  524288 = 2^19
 
 	// check input value
-	f_max = f_step * 8388608 / factor;
+	f_max = div_u64(f_step * 8388608, factor);
 	if (frequency > f_max)
 	{
 		dev_dbg(&spi->dev, "setFrequency: illegal input param");
-- 
2.9.0

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

end of thread, other threads:[~2017-08-28 15:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-28 13:23 [PATCH] staging: pi433: use div_u64 for 64-bit division Arnd Bergmann
2017-07-28 14:21 ` Marcus Wolf
2017-07-28 14:26   ` Dan Carpenter
2017-07-28 14:50     ` Marcus Wolf
2017-07-28 15:16     ` Send a large patch right now or is it better to do it later? Marcus Wolf
2017-07-29  7:23       ` Dan Carpenter
2017-08-28 15:17       ` Greg Kroah-Hartman
2017-07-28 14:26   ` [PATCH] staging: pi433: use div_u64 for 64-bit division Arnd Bergmann

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

Powered by JetHome