chipset_enable: Add a line break in debug output

If loglevel is >= debug, we should end all lines at
info level with a line break.

Change-Id: Ibf85869a9156facda58c5fb6a0a558d124ffd2b8
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/72586
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/chipset_enable.c b/chipset_enable.c
index 1a1f508..1d6ccff 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -2264,7 +2264,7 @@
 			msg_pdbg("Skipping chipset enable: No supported buses enabled.\n");
 			continue;
 		}
-		msg_pinfo("Enabling flash write... ");
+		msg_pinfo("Enabling flash write... "); msg_pdbg("\n");
 		ret = chipset_enables[i].doit(dev, chipset_enables[i].device_name);
 		if (ret == NOT_DONE_YET) {
 			ret = -2;