aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2012-10-26 19:03:14 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-10-26 21:55:28 +0200
commit3e9155dddf4a439703f7b762648eb820307dbfe4 (patch)
treeebaebda0c8236761841a8dee04d179c8b9d4e332 /src/northbridge
parent6997b4bcefe85155afc5f3be054b0c9a293fe256 (diff)
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)
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/sch/early_init.c3
1 files changed, 2 insertions, 1 deletions
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)