aboutsummaryrefslogtreecommitdiff
path: root/kernel/drivers
diff options
context:
space:
mode:
authorMarvin Borner2020-09-14 18:38:44 +0200
committerMarvin Borner2020-09-14 18:38:44 +0200
commit096f9be4ac328ae39bd794c36a9a04ff68c2b844 (patch)
tree7228f9d1631fd126c1942bafb878cca381ff336b /kernel/drivers
parent18a0cc60d46d8ab22479e9683c27459703195480 (diff)
Some GUI fixes
Diffstat (limited to 'kernel/drivers')
-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);
}