mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-23 09:47:44 +00:00
Rename TIME_MS_DELTA to CYCLES_PER_MS
TIME_MS_DELTA is not clear enough, rename it to CYCLES_PER_MS. Signed-off-by: Qi Yadong <yadong.qi@intel.com>
This commit is contained in:
@@ -231,6 +231,6 @@ void console_setup_timer(void)
|
||||
{
|
||||
/* Start an one-shot timer */
|
||||
if (add_timer(console_timer_callback, 0,
|
||||
rdtsc() + TIME_MS_DELTA * CONSOLE_KICK_TIMER_TIMEOUT) < 0)
|
||||
rdtsc() + CYCLES_PER_MS * CONSOLE_KICK_TIMER_TIMEOUT) < 0)
|
||||
pr_err("Failed to add console kick timer");
|
||||
}
|
||||
|
Reference in New Issue
Block a user