summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorCaveh Jalali <caveh@chromium.org>2020-04-21 05:00:48 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-07-28 19:18:28 +0000
commitc8e4dcb569677d7d603dddaec9ac1654f70d0fd9 (patch)
treecc584d5145033d7e09008fbd0f4ab036d014c2b7 /src/drivers
parente37f7f055f7c6b178d6265988308fe64f4babb78 (diff)
downloadcoreboot-c8e4dcb569677d7d603dddaec9ac1654f70d0fd9.tar.xz
drivers/i2c/max98373: fix error message formatting
This adds a missing newline to a printk in the max98373 driver. BUG=none TEST=verified BIOS boot log is properly formatted on volteer. Change-Id: I1c989729bdc71736975901566023e0057a6d0556 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41167 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/i2c/max98373/max98373.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/i2c/max98373/max98373.c b/src/drivers/i2c/max98373/max98373.c
index 0557f421ca..1f8a4f3b29 100644
--- a/src/drivers/i2c/max98373/max98373.c
+++ b/src/drivers/i2c/max98373/max98373.c
@@ -25,7 +25,7 @@ static void max98373_fill_ssdt(const struct device *dev)
struct acpi_dp *dp;
if (!dev->enabled || !scope) {
- printk(BIOS_ERR, "%s: dev not enabled", __func__);
+ printk(BIOS_ERR, "%s: dev not enabled\n", __func__);
return;
}