[coreboot] r3873 - in trunk/coreboot-v2/src/arch: i386/lib ppc/lib
svn at coreboot.org
svn at coreboot.org
Tue Jan 20 20:17:12 CET 2009
Author: stepan
Date: 2009-01-20 20:17:11 +0100 (Tue, 20 Jan 2009)
New Revision: 3873
Modified:
trunk/coreboot-v2/src/arch/i386/lib/cpu.c
trunk/coreboot-v2/src/arch/ppc/lib/cpu.c
Log:
Trivial stuff:
* fix a warning that should not be one.
* fix capitalization typo
Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>
Modified: trunk/coreboot-v2/src/arch/i386/lib/cpu.c
===================================================================
--- trunk/coreboot-v2/src/arch/i386/lib/cpu.c 2009-01-20 18:37:26 UTC (rev 3872)
+++ trunk/coreboot-v2/src/arch/i386/lib/cpu.c 2009-01-20 19:17:11 UTC (rev 3873)
@@ -250,7 +250,7 @@
set_cpu_ops(cpu);
cpu->device += c.x86_mask;
if(!cpu->ops) die("Unknown cpu");
- printk_debug("WARNING: Using generic cpu ops\n");
+ printk_debug("Using generic cpu ops (good)\n");
}
@@ -261,7 +261,7 @@
cpu->ops->init(cpu);
}
- printk_info("CPU #%d Initialized\n", info->index);
+ printk_info("CPU #%d initialized\n", info->index);
return;
}
Modified: trunk/coreboot-v2/src/arch/ppc/lib/cpu.c
===================================================================
--- trunk/coreboot-v2/src/arch/ppc/lib/cpu.c 2009-01-20 18:37:26 UTC (rev 3872)
+++ trunk/coreboot-v2/src/arch/ppc/lib/cpu.c 2009-01-20 19:17:11 UTC (rev 3873)
@@ -64,6 +64,6 @@
#endif
/* Turn on caching if we haven't already */
- printk_info("CPU #%d Initialized\n", info->index);
+ printk_info("CPU #%d initialized\n", info->index);
return;
}
More information about the coreboot
mailing list