aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Boyd <[email protected]>2022-08-30 15:58:28 -0700
committerTzung-Bi Shih <[email protected]>2022-09-01 10:15:34 +0800
commit8dab6a5939199a5dcf0731eb2dce757837575633 (patch)
treed3e693a7c3e1512e5d0e3aff3f90f6ecfd5a32f6
parent4e477663e396f48c5cfc5f2d75d4b514f409516a (diff)
platform/chrome: cros_typec_switch: Add missing newline on printk
We need a newline here to ensure the next printk starts fresh. Cc: Prashant Malani <[email protected]> Cc: Tzung-Bi Shih <[email protected]> Fixes: affc804c44c8 ("platform/chrome: cros_typec_switch: Add switch driver") Signed-off-by: Stephen Boyd <[email protected]> Acked-by: Prashant Malani <[email protected]> Signed-off-by: Tzung-Bi Shih <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/platform/chrome/cros_typec_switch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_typec_switch.c b/drivers/platform/chrome/cros_typec_switch.c
index f85687adb594..383daf2c66b7 100644
--- a/drivers/platform/chrome/cros_typec_switch.c
+++ b/drivers/platform/chrome/cros_typec_switch.c
@@ -244,7 +244,7 @@ static int cros_typec_register_switches(struct cros_typec_switch_data *sdata)
}
if (index < 0 || index >= EC_USB_PD_MAX_PORTS) {
- dev_err(fwnode->dev, "Invalid port index number: %llu", index);
+ dev_err(fwnode->dev, "Invalid port index number: %llu\n", index);
ret = -EINVAL;
goto err_switch;
}