aboutsummaryrefslogtreecommitdiff
path: root/kernel/drivers/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/drivers/timer.c')
-rw-r--r--kernel/drivers/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/drivers/timer.c b/kernel/drivers/timer.c
index 8029a2a..812bde7 100644
--- a/kernel/drivers/timer.c
+++ b/kernel/drivers/timer.c
@@ -42,8 +42,8 @@ void timer_wait(u32 ticks)
// Install timer handler into IRQ0
void timer_install()
{
- hpet_install(10000); // TODO: Find optimal femtosecond period
- if (!hpet)
- timer_phase(1000);
+ /* hpet_install(10000); // TODO: Find optimal femtosecond period */
+ /* if (!hpet) */
+ timer_phase(1000);
irq_install_handler(0, timer_handler);
}