summaryrefslogtreecommitdiff
path: root/src/superio
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2020-09-28 23:18:21 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-10-17 13:54:29 +0000
commite1194ae6b6b9b02371d1e9e9c3b00aa658f30213 (patch)
tree2439ac8bdc3a89963eb9a385b17ad27e1731abac /src/superio
parent227225b4ac46e085d72d51e698aecd73159e1f18 (diff)
downloadcoreboot-e1194ae6b6b9b02371d1e9e9c3b00aa658f30213.tar.xz
superio: Add newline to log message about disabled mouse controller
A newline is missing at the end of the informational message. PNP: 002e.5 init nct5572d_init: Disable mouse controller.PNP: 002e.5 init finished in 0 msecs PNP: 002e.307 init Change-Id: Ic73ed97be0993637be1e97040784d5a8e70a22ae Fixes: 6ff1078990 ("superio: Log if mouse controller is disabled") Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45805 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/superio')
-rw-r--r--src/superio/nuvoton/nct5572d/superio.c2
-rw-r--r--src/superio/winbond/w83667hg-a/superio.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/superio/nuvoton/nct5572d/superio.c b/src/superio/nuvoton/nct5572d/superio.c
index 351181c0f5..c0a71186af 100644
--- a/src/superio/nuvoton/nct5572d/superio.c
+++ b/src/superio/nuvoton/nct5572d/superio.c
@@ -36,7 +36,7 @@ static void nct5572d_init(struct device *dev)
mouse_detected = pc_keyboard_init(PROBE_AUX_DEVICE);
if (!mouse_detected) {
- printk(BIOS_INFO, "%s: Disable mouse controller.",
+ printk(BIOS_INFO, "%s: Disable mouse controller.\n",
__func__);
pnp_enter_conf_mode(dev);
byte = pnp_read_config(dev, 0x2a);
diff --git a/src/superio/winbond/w83667hg-a/superio.c b/src/superio/winbond/w83667hg-a/superio.c
index bea21016f5..828fe9af04 100644
--- a/src/superio/winbond/w83667hg-a/superio.c
+++ b/src/superio/winbond/w83667hg-a/superio.c
@@ -36,7 +36,7 @@ static void w83667hg_a_init(struct device *dev)
mouse_detected = pc_keyboard_init(PROBE_AUX_DEVICE);
if (!mouse_detected) {
- printk(BIOS_INFO, "%s: Disable mouse controller.",
+ printk(BIOS_INFO, "%s: Disable mouse controller.\n",
__func__);
pnp_enter_conf_mode(dev);
byte = pnp_read_config(dev, 0x2a);