David Hendricks ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2386
-gerrit commit 9893316859618bc3c42c457e58e3e566b455d205 Author: David Hendricks <[email protected]> Date: Wed Feb 13 20:29:27 2013 -0800 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 <[email protected]> --- src/mainboard/google/snow/romstage.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mainboard/google/snow/romstage.c b/src/mainboard/google/snow/romstage.c index f6f858c..9891011 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"); - mmu_setup(CONFIG_SYS_SDRAM_BASE, CONFIG_DRAM_SIZE_MB); entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/coreboot_ram"); -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

