Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39671 )
Change subject: cpu/x86: Fix typo ......................................................................
cpu/x86: Fix typo
CIRTICAL -> CRITICAL
Change-Id: Ie2c1427b197dbfebdc7f0c6ffd85f768845ff1bd Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/cpu/x86/mp_init.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/39671/1
diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c index 6082df9..7047855 100644 --- a/src/cpu/x86/mp_init.c +++ b/src/cpu/x86/mp_init.c @@ -927,7 +927,7 @@ return 0; } while (expire_us <= 0 || !stopwatch_expired(&sw));
- printk(BIOS_CRIT, "CIRTICAL ERROR: AP call expired. %d/%d CPUs accepted.\n", + printk(BIOS_CRIT, "CRITICAL ERROR: AP call expired. %d/%d CPUs accepted.\n", cpus_accepted, global_num_aps); return -1; }