aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/lib/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/lib/cpu.c')
-rw-r--r--src/arch/x86/lib/cpu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/lib/cpu.c b/src/arch/x86/lib/cpu.c
index bddfe1ae12..4a3bd964cd 100644
--- a/src/arch/x86/lib/cpu.c
+++ b/src/arch/x86/lib/cpu.c
@@ -256,6 +256,8 @@ void cpu_initialize(unsigned int index)
die("CPU: missing cpu device structure");
}
+ post_log_path(cpu);
+
/* Find what type of cpu we are dealing with */
identify_cpu(cpu);
printk(BIOS_DEBUG, "CPU: vendor %s device %x\n",
@@ -285,6 +287,7 @@ void cpu_initialize(unsigned int index)
cpu->initialized = 1;
cpu->ops->init(cpu);
}
+ post_log_clear();
printk(BIOS_INFO, "CPU #%d initialized\n", index);