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>
Reviewed-on: http://review.coreboot.org/1632
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Tested-by: build bot (Jenkins)
This commit is contained in:
Sebastian Andrzej Siewior 2012-10-26 19:03:14 +02:00 committed by Stefan Reinauer
parent 6997b4bcef
commit 3e9155dddf
1 changed files with 2 additions and 1 deletions

View File

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