summaryrefslogtreecommitdiff
path: root/common/tablet_mode.c
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2018-05-16 12:29:00 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-05-16 22:49:42 -0700
commit0f41a73dbf9ac5ec569ab53600b7b8e95453a284 (patch)
tree8ac25140935e4e8478f2a9fbf70d5c6754b44090 /common/tablet_mode.c
parent0b6be8f7b56d8104a4f8ff09996437205c6efca9 (diff)
downloadchrome-ec-0f41a73dbf9ac5ec569ab53600b7b8e95453a284.tar.gz
common: drop unnecessary line ending
CPRINTS() macro is already adding the newline character, no need to include it explicitly. BRANCH=none BUG=none TEST=vefied that Coral EC does not print this newline any more Change-Id: I1f6b1fcb90818a8d4a2d18cf5060669fc46d38a7 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1062588 Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'common/tablet_mode.c')
-rw-r--r--common/tablet_mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/tablet_mode.c b/common/tablet_mode.c
index d73140c4bf..5e73dd4c93 100644
--- a/common/tablet_mode.c
+++ b/common/tablet_mode.c
@@ -27,7 +27,7 @@ void tablet_set_mode(int mode)
return;
tablet_mode = mode;
- CPRINTS("tablet mode %sabled\n", mode ? "en" : "dis");
+ CPRINTS("tablet mode %sabled", mode ? "en" : "dis");
hook_notify(HOOK_TABLET_MODE_CHANGE);
}