From 3e9155dddf4a439703f7b762648eb820307dbfe4 Mon Sep 17 00:00:00 2001 From: Sebastian Andrzej Siewior Date: Fri, 26 Oct 2012 19:03:14 +0200 Subject: northbridge/sch: move the \n so it reads a little better MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this, the output of "Setting up ACPI…" continues right after the output of stepping. Change-Id: I2ad7cc3e55884ff509600b01274258b8e8250981 Signed-off-by: Sebastian Andrzej Siewior Reviewed-on: http://review.coreboot.org/1632 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- 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 b4d8eab815..f402ccc1f9 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) -- cgit v1.2.3