public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* PATCH: fix 32/62 div in HPET driver
@ 2005-06-09  1:57 Jon Smirl
  0 siblings, 0 replies; only message in thread
From: Jon Smirl @ 2005-06-09  1:57 UTC (permalink / raw)
  To: lkml

This 64 bit div should be one that adjusts 32/64 depending on arch.

Signed off by: jonsmirl@gmail.com <Jon Smirl>
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c
--- a/drivers/char/hpet.c
+++ b/drivers/char/hpet.c
@@ -834,7 +834,7 @@ int hpet_alloc(struct hpet_data *hdp)
 	printk("\n");
 
 	ns = hpetp->hp_period;	/* femptoseconds, 10^-15 */
-	do_div(ns, 1000000);	/* convert to nanoseconds, 10^-9 */
+	ns /= 1000000;		/* convert to nanoseconds, 10^-9 */
 	printk(KERN_INFO "hpet%d: %ldns tick, %d %d-bit timers\n",
 		hpetp->hp_which, ns, hpetp->hp_ntimer,
 		cap & HPET_COUNTER_SIZE_MASK ? 64 : 32);

-- 
Jon Smirl
jonsmirl@gmail.com

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-06-09  1:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-09  1:57 PATCH: fix 32/62 div in HPET driver Jon Smirl

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