diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-07-29 07:40:41 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-07-31 18:35:09 +0200 |
commit | 777ea897e80c1705230200040fe5dda4fcb065db (patch) | |
tree | de1d9a134569f8ec736084309d7124643efb441c /src/arch/x86/cpu.c | |
parent | 45de1fe4fbf436d68571046347595b87efa3868e (diff) |
src/arch: Capitalize CPU, RAM and ROM
Change-Id: Ia6ac94a93b48037a392a9aec2cd19cd80369173f
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/15953
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/arch/x86/cpu.c')
-rw-r--r-- | src/arch/x86/cpu.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/x86/cpu.c b/src/arch/x86/cpu.c index cba105a5db..0fdc11c594 100644 --- a/src/arch/x86/cpu.c +++ b/src/arch/x86/cpu.c @@ -96,7 +96,7 @@ static int deep_magic_nexgen_probe(void) } #endif -/* List of cpu vendor strings along with their normalized +/* List of CPU vendor strings along with their normalized * id values. */ static struct { @@ -132,7 +132,7 @@ static const char *x86_vendor_name[] = { static const char *cpu_vendor_name(int vendor) { const char *name; - name = "<invalid cpu vendor>"; + name = "<invalid CPU vendor>"; if ((vendor < (ARRAY_SIZE(x86_vendor_name))) && (x86_vendor_name[vendor] != 0)) { @@ -246,7 +246,7 @@ void cpu_initialize(unsigned int index) cpu = info->cpu; if (!cpu) { - die("CPU: missing cpu device structure"); + die("CPU: missing CPU device structure"); } if (cpu->initialized) @@ -254,7 +254,7 @@ void cpu_initialize(unsigned int index) post_log_path(cpu); - /* Find what type of cpu we are dealing with */ + /* Find what type of CPU we are dealing with */ identify_cpu(cpu); printk(BIOS_DEBUG, "CPU: vendor %s device %x\n", cpu_vendor_name(cpu->vendor), cpu->device); @@ -273,11 +273,11 @@ void cpu_initialize(unsigned int index) set_cpu_ops(cpu); cpu->device += c.x86_mask; if(!cpu->ops) die("Unknown cpu"); - printk(BIOS_DEBUG, "Using generic cpu ops (good)\n"); + printk(BIOS_DEBUG, "Using generic CPU ops (good)\n"); } - /* Initialize the cpu */ + /* Initialize the CPU */ if (cpu->ops && cpu->ops->init) { cpu->enabled = 1; cpu->initialized = 1; |