summaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
authorDavid Hendricks <dhendrix@chromium.org>2013-02-13 20:29:27 -0800
committerRonald G. Minnich <rminnich@gmail.com>2013-02-14 07:02:54 +0100
commit2d0b55bd6bfc2985950224dbca29668cc1aa7eba (patch)
tree926828dbb5b065112dfff24ddf084321bf5864c1 /src/mainboard
parent4aff4458f58398f54c248604694c7005294c1747 (diff)
downloadcoreboot-2d0b55bd6bfc2985950224dbca29668cc1aa7eba.tar.xz
snow: remove superfluous printk's from romstage main
These were left over from earlier debugging and are no longer needed. They don't indicate any status or useful info (other than which line of code has been executed). Error messages are available in case something needs attention. Change-Id: Ie09fac29c42908cb8924169e56d8927fb76f02da Signed-off-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/2386 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/google/snow/romstage.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/google/snow/romstage.c b/src/mainboard/google/snow/romstage.c
index 719337b2c2..53072d1efb 100644
--- a/src/mainboard/google/snow/romstage.c
+++ b/src/mainboard/google/snow/romstage.c
@@ -64,7 +64,6 @@ void main(void)
system_clock_init(mem, arm_ratios);
console_init();
- printk(BIOS_INFO, "hello from romstage\n");
if (!mem) {
printk(BIOS_CRIT, "Unable to auto-detect memory timings\n");
@@ -83,8 +82,6 @@ void main(void)
while(1);
}
- printk(BIOS_INFO, "ddr3_init done\n");
-
entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/coreboot_ram");
printk(BIOS_INFO, "entry is 0x%p, leaving romstage.\n", entry);