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>
This commit is contained in:
David Hendricks 2013-02-13 20:29:27 -08:00 committed by Ronald G. Minnich
parent 4aff4458f5
commit 2d0b55bd6b

View file

@ -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);