Print a failure message if a sibling CPU fails to start.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2031 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
0b1a5a4a92
commit
059182cc4f
|
@ -67,7 +67,11 @@ void intel_sibling_init(device_t cpu)
|
|||
new->path.u.apic.apic_id);
|
||||
#endif
|
||||
/* Start the new cpu */
|
||||
start_cpu(new);
|
||||
if (!start_cpu(new)) {
|
||||
/* Record the error in cpu? */
|
||||
printk_err("CPU %u would not start!\n",
|
||||
new->path.u.apic.apic_id);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue