summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing Shen <phoenixshen@google.com>2021-08-12 16:14:08 +0800
committerCommit Bot <commit-bot@chromium.org>2021-08-12 10:09:22 +0000
commit956a8f0e9b5193b6b55ca770fbe830ecb7632baf (patch)
tree43e140276f59efbc0037436a9e691754a17d0bb7
parent9c379fca35116534de74aceec99a50d106f947e2 (diff)
downloadchrome-ec-956a8f0e9b5193b6b55ca770fbe830ecb7632baf.tar.gz
asurada/cherry/goroh: add missing newline
Add a newline to the debug message to make it easier to read. BUG=none TEST=none BRANCH=main Signed-off-by: Ting Shen <phoenixshen@google.com> Change-Id: Ice108ca54cc4247c1d76c9f29c1392f15a4de5b2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3087982 Tested-by: Ting Shen <phoenixshen@chromium.org> Auto-Submit: Ting Shen <phoenixshen@chromium.org> Reviewed-by: Eric Yilun Lin <yllin@google.com> Commit-Queue: Eric Yilun Lin <yllin@google.com>
-rw-r--r--baseboard/asurada/usbc_config.c2
-rw-r--r--baseboard/cherry/baseboard.c2
-rw-r--r--baseboard/goroh/baseboard.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/baseboard/asurada/usbc_config.c b/baseboard/asurada/usbc_config.c
index c770efdb70..e552c97771 100644
--- a/baseboard/asurada/usbc_config.c
+++ b/baseboard/asurada/usbc_config.c
@@ -340,7 +340,7 @@ int board_set_active_charge_port(int port)
/* Check if the port is sourcing VBUS. */
if (ppc_is_sourcing_vbus(port)) {
- CPRINTF("Skip enable C%d", port);
+ CPRINTS("Skip enable C%d", port);
return EC_ERROR_INVAL;
}
diff --git a/baseboard/cherry/baseboard.c b/baseboard/cherry/baseboard.c
index e3201a96af..72f1a68881 100644
--- a/baseboard/cherry/baseboard.c
+++ b/baseboard/cherry/baseboard.c
@@ -506,7 +506,7 @@ int board_set_active_charge_port(int port)
/* Check if the port is sourcing VBUS. */
if (ppc_is_sourcing_vbus(port)) {
- CPRINTF("Skip enable C%d", port);
+ CPRINTS("Skip enable C%d", port);
return EC_ERROR_INVAL;
}
diff --git a/baseboard/goroh/baseboard.c b/baseboard/goroh/baseboard.c
index c738033018..6914520b90 100644
--- a/baseboard/goroh/baseboard.c
+++ b/baseboard/goroh/baseboard.c
@@ -450,7 +450,7 @@ int board_set_active_charge_port(int port)
/* Check if the port is sourcing VBUS. */
if (ppc_is_sourcing_vbus(port)) {
- CPRINTF("Skip enable C%d", port);
+ CPRINTS("Skip enable C%d", port);
return EC_ERROR_INVAL;
}