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)
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 @@
 		/* 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 @@
 		/* Others reserved. */
 		printk(BIOS_INFO, "Unknown (%02x)", reg8);
 	}
+	printk(BIOS_INFO, "\n");
 }
 
 static void sch_setup_non_standard_bars(void)