Clean up some uninteresting log spam.

This commit is contained in:
Andreas Kling 2019-02-06 11:32:23 +01:00
commit 353b191a49
Notes: sideshowbarker 2024-07-19 15:51:08 +09:00
8 changed files with 6 additions and 16 deletions

View file

@ -83,7 +83,7 @@ void initialize()
timer_reload = (BASE_FREQUENCY / TICKS_PER_SECOND);
kprintf("PIT(i8253): %u Hz, square wave (%x)\n", TICKS_PER_SECOND, timer_reload);
kprintf("PIT: %u Hz, square wave (%x)\n", TICKS_PER_SECOND, timer_reload);
IO::out8(TIMER0_CTL, LSB(timer_reload));
IO::out8(TIMER0_CTL, MSB(timer_reload));