[coreboot-gerrit] New patch to review for coreboot: cpu: Fixed typo that spelled "allocate" as "allocte."

Jacob Laska (jlaska91@gmail.com) gerrit at coreboot.org
Mon Jan 18 03:03:18 CET 2016


Jacob Laska (jlaska91 at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13030

-gerrit

commit fb9455018db64e2eda1e9b3cb80d544f95f5de46
Author: Jacob Laska <jlaska91 at gmail.com>
Date:   Sun Jan 17 19:47:54 2016 -0600

    cpu: Fixed typo that spelled "allocate" as "allocte."
    
    The error informing the user that the CPU device cannot be
    allocated had a typo incorrectly spelling "allocate" as
    "allocte".
    
    TEST=Compiled
    Change-Id: I2a6bad56133e375e2fd6a670593791414bf0dc2c
    Signed-off-by: Jacob Laska <jlaska91 at gmail.com>
---
 src/cpu/x86/mp_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c
index 26ac7b2..184dc4f 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;



More information about the coreboot-gerrit mailing list