Kernel: Report more accurate ticks per second for APIC timer

This commit is contained in:
Tom 2020-10-29 15:16:27 -06:00 committed by Andreas Kling
parent d076b00248
commit 180cc85d79
Notes: sideshowbarker 2024-07-19 01:39:23 +09:00

View File

@ -128,6 +128,9 @@ bool APICTimer::calibrate(HardwareTimerBase& calibration_source)
}
#endif
// TODO: measure rather than assuming it matches?
m_frequency = calibration_source.ticks_per_second();
enable_local_timer();
return true;
}