Skip to content

Commit

Permalink
[PATCH] hpet: do_div fix
Browse files Browse the repository at this point in the history
We don't need to use do_div() on a 32-bit quantity.

Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Jon Smirl authored and Linus Torvalds committed Jun 25, 2005
1 parent 6283d58 commit 44f410a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/hpet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 44f410a

Please sign in to comment.