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>
This commit is contained in:
Jacob Laska 2016-01-17 19:47:54 -06:00 committed by Martin Roth
parent 967881d0b6
commit aad9b6a086
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static int allocate_cpu_devices(struct bus *cpu_bus, struct mp_params *p)
/* Allocate the new cpu device structure */ /* Allocate the new cpu device structure */
new = alloc_find_dev(cpu_bus, &cpu_path); new = alloc_find_dev(cpu_bus, &cpu_path);
if (new == NULL) { if (new == NULL) {
printk(BIOS_CRIT, "Could not allocte cpu device\n"); printk(BIOS_CRIT, "Could not allocate cpu device\n");
max_cpus--; max_cpus--;
} }
cpus[i].dev = new; cpus[i].dev = new;