cpu/x86: Fix typo

CIRTICAL -> CRITICAL

Change-Id: Ie2c1427b197dbfebdc7f0c6ffd85f768845ff1bd
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39671
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Subrata Banik 2020-03-19 20:51:09 +05:30
parent 838fbc71cf
commit dbcb0ce5e9
1 changed files with 1 additions and 1 deletions

View File

@ -927,7 +927,7 @@ static int run_ap_work(struct mp_callback *val, long expire_us)
return 0; return 0;
} while (expire_us <= 0 || !stopwatch_expired(&sw)); } 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); cpus_accepted, global_num_aps);
return -1; return -1;
} }