aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/x86/mp_init.c
diff options
context:
space:
mode:
authorJacob Laska <jlaska91@gmail.com>2016-01-17 19:47:54 -0600
committerMartin Roth <martinroth@google.com>2016-01-20 16:07:49 +0100
commitaad9b6a086ed6da1a07898624537ddef615c7fdd (patch)
treee9e95c4910b1d75a31fd3b3d205b83b95a7b60c4 /src/cpu/x86/mp_init.c
parent967881d0b65a84df31707838dd66e550967a23ce (diff)
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 <jlaska91@gmail.com> Reviewed-on: https://review.coreboot.org/13030 Tested-by: build bot (Jenkins) Reviewed-by: Ben Frisch <bfrisch@xes-inc.com> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/cpu/x86/mp_init.c')
-rw-r--r--src/cpu/x86/mp_init.c2
1 files changed, 1 insertions, 1 deletions
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;