diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2008-04-19 10:55:16 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 11:35:47 -0400 |
commit | 877084fb1cf6167c5441b0a30c3d9ef9b7be0a3a (patch) | |
tree | 59f2f7f9c9d4566af868b7f83d963d915a281b40 /arch/x86/kernel/i8253.c | |
parent | d454157b113718a92ba5accc03cee64c7e081483 (diff) |
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/i8253.c')
-rw-r--r-- | arch/x86/kernel/i8253.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/i8253.c b/arch/x86/kernel/i8253.c index e325cfe06401..c1b5e3ece1f2 100644 --- a/arch/x86/kernel/i8253.c +++ b/arch/x86/kernel/i8253.c | |||
@@ -115,7 +115,8 @@ void __init setup_pit_timer(void) | |||
115 | * IO_APIC has been initialized. | 115 | * IO_APIC has been initialized. |
116 | */ | 116 | */ |
117 | pit_clockevent.cpumask = cpumask_of_cpu(smp_processor_id()); | 117 | pit_clockevent.cpumask = cpumask_of_cpu(smp_processor_id()); |
118 | pit_clockevent.mult = div_sc(CLOCK_TICK_RATE, NSEC_PER_SEC, 32); | 118 | pit_clockevent.mult = div_sc(CLOCK_TICK_RATE, NSEC_PER_SEC, |
119 | pit_clockevent.shift); | ||
119 | pit_clockevent.max_delta_ns = | 120 | pit_clockevent.max_delta_ns = |
120 | clockevent_delta2ns(0x7FFF, &pit_clockevent); | 121 | clockevent_delta2ns(0x7FFF, &pit_clockevent); |
121 | pit_clockevent.min_delta_ns = | 122 | pit_clockevent.min_delta_ns = |