From aad9b6a086ed6da1a07898624537ddef615c7fdd Mon Sep 17 00:00:00 2001 From: Jacob Laska Date: Sun, 17 Jan 2016 19:47:54 -0600 Subject: cpu: Fix typo that spelled "allocate" as "allocte." The error informing the user that the CPU device cannot be allocated has a typo incorrectly spelling "allocate" as "allocte". TEST=Compiled Change-Id: I2a6bad56133e375e2fd6a670593791414bf0dc2c Signed-off-by: Jacob Laska Reviewed-on: https://review.coreboot.org/13030 Tested-by: build bot (Jenkins) Reviewed-by: Ben Frisch Reviewed-by: Martin Roth Reviewed-by: Paul Menzel --- src/cpu/x86/mp_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cpu/x86/mp_init.c') diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c index 26ac7b26d7..184dc4fcc1 100644 --- a/src/cpu/x86/mp_init.c +++ b/src/cpu/x86/mp_init.c @@ -337,7 +337,7 @@ static int allocate_cpu_devices(struct bus *cpu_bus, struct mp_params *p) /* Allocate the new cpu device structure */ new = alloc_find_dev(cpu_bus, &cpu_path); if (new == NULL) { - printk(BIOS_CRIT, "Could not allocte cpu device\n"); + printk(BIOS_CRIT, "Could not allocate cpu device\n"); max_cpus--; } cpus[i].dev = new; -- cgit v1.2.3