Cosmetics.

XenServer actually boots (but slow as hell) with hpet timers enabled, real hardware does
not.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33287 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2009-09-25 08:29:42 +00:00
parent dd9b76727d
commit 9ea40f7802
+3 -1
View File
@@ -177,8 +177,10 @@ hpet_init(struct kernel_args *args)
return B_ERROR; return B_ERROR;
} }
for (c = 0; c < numTimers; c++) for (c = 0; c < numTimers; c++) {
dprintf("hpet_init: timer %d:\n", c);
dump_timer(&sHPETRegs->timer[c]); dump_timer(&sHPETRegs->timer[c]);
}
install_io_interrupt_handler(0xfb - ARCH_INTERRUPT_BASE, install_io_interrupt_handler(0xfb - ARCH_INTERRUPT_BASE,
&hpet_timer_interrupt, NULL, B_NO_LOCK_VECTOR); &hpet_timer_interrupt, NULL, B_NO_LOCK_VECTOR);