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:
parent
967881d0b6
commit
aad9b6a086
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue