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>
This commit is contained in:
Caveh Jalali 2020-04-21 05:00:48 -07:00 committed by Patrick Georgi
parent e37f7f055f
commit c8e4dcb569
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}