diff options
author | Felix Held <felix.held@amd.corp-partner.google.com> | 2021-09-24 19:08:52 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-27 13:20:16 +0000 |
commit | fafeb190ae2dabf76adb0cca771520938a88c817 (patch) | |
tree | e65abcc3abab4afc4a81a082a66012e1cf33f2d8 /src/cpu | |
parent | 91feb06ecec4ce9697354848f6500a5eb73397b3 (diff) |
cpu/x86/mp_init: add expansion for SIPI acronym
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic182d7c551932ab6917a81568490ed18acdcd597
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57927
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/mp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |