diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2008-04-19 14:55:16 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 15:35:47 (GMT) |
commit | 877084fb1cf6167c5441b0a30c3d9ef9b7be0a3a (patch) | |
tree | 59f2f7f9c9d4566af868b7f83d963d915a281b40 /arch/x86/kernel/hpet.c | |
parent | d454157b113718a92ba5accc03cee64c7e081483 (diff) | |
download | linux-877084fb1cf6167c5441b0a30c3d9ef9b7be0a3a.tar.xz |
x86: cleanup div_sc() usage
Remove the magic number in the third argment of div_sc().
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/hpet.c')
-rw-r--r-- | arch/x86/kernel/hpet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 36652ea..9007f9e 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c @@ -218,7 +218,7 @@ static void hpet_legacy_clockevent_register(void) hpet_freq = 1000000000000000ULL; do_div(hpet_freq, hpet_period); hpet_clockevent.mult = div_sc((unsigned long) hpet_freq, - NSEC_PER_SEC, 32); + NSEC_PER_SEC, hpet_clockevent.shift); /* Calculate the min / max delta */ hpet_clockevent.max_delta_ns = clockevent_delta2ns(0x7FFFFFFF, &hpet_clockevent); |