Sebastian Andrzej Siewior (sebastian@breakpoint.cc) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1632
-gerrit
commit bab8fab0f11b511a5b4007e6cb0dc689b34e311b Author: Sebastian Andrzej Siewior bigeasy@linutronix.de Date: Fri Oct 26 19:03:14 2012 +0200
northbridge/sch: move the \n so it reads a little better
Without this, the output of "Setting up ACPI…" continues right after the output of stepping.
Change-Id: I2ad7cc3e55884ff509600b01274258b8e8250981 Signed-off-by: Sebastian Andrzej Siewior bigeasy@linutronix.de --- src/northbridge/intel/sch/early_init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/northbridge/intel/sch/early_init.c b/src/northbridge/intel/sch/early_init.c index b4d8eab..f402ccc 100644 --- a/src/northbridge/intel/sch/early_init.c +++ b/src/northbridge/intel/sch/early_init.c @@ -153,7 +153,7 @@ static void sch_detect_chipset(void) /* Others reserved. */ printk(BIOS_INFO, "Unknown (%02x)", reg16); } - printk(BIOS_INFO, " Chipset\n"); + printk(BIOS_INFO, " Chipset ");
reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0x8); switch (reg8) { @@ -173,6 +173,7 @@ static void sch_detect_chipset(void) /* Others reserved. */ printk(BIOS_INFO, "Unknown (%02x)", reg8); } + printk(BIOS_INFO, "\n"); }
static void sch_setup_non_standard_bars(void)