From fafeb190ae2dabf76adb0cca771520938a88c817 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Fri, 24 Sep 2021 19:08:52 +0200 Subject: [PATCH] cpu/x86/mp_init: add expansion for SIPI acronym Signed-off-by: Felix Held Change-Id: Ic182d7c551932ab6917a81568490ed18acdcd597 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57927 Reviewed-by: Raul Rangel Tested-by: build bot (Jenkins) --- src/cpu/x86/mp_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c index f54a7b714d..93c143ec85 100644 --- a/src/cpu/x86/mp_init.c +++ b/src/cpu/x86/mp_init.c @@ -455,7 +455,7 @@ static int start_aps(struct bus *cpu_bus, int ap_count, atomic_t *num_aps) mdelay(10); } - /* Send 1st SIPI */ + /* Send 1st Startup IPI (SIPI) */ if (lapic_busy()) { printk(BIOS_DEBUG, "Waiting for ICR not to be busy..."); if (apic_wait_timeout(1000 /* 1 ms */, 50)) {