diff options
author | Jett Rink <jettrink@chromium.org> | 2018-08-03 07:50:01 -0600 |
---|---|---|
committer | Jett Rink <jettrink@chromium.org> | 2018-08-03 13:51:57 +0000 |
commit | 7ceca8cd1e661359cff4cfbdaf6b05ef7171b060 (patch) | |
tree | 68b5c050e17037573f4919de5ee85483df68c8df /driver | |
parent | 06fab7876727c824e76fff35f6a2d3a2b5dfe308 (diff) | |
download | chrome-ec-7ceca8cd1e661359cff4cfbdaf6b05ef7171b060.tar.gz |
cleanup: removing \n in CPRINTS
CPRINTS already appends a \n, so we currently have 2
BRANCH=none
BUG=none
TEST=none
Change-Id: Ib782a1b760c771af5ac200c18e0fe84ad7f0aaa1
Signed-off-by: Jett Rink <jettrink@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1162073
Diffstat (limited to 'driver')
-rw-r--r-- | driver/tcpm/anx7447.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/tcpm/anx7447.c b/driver/tcpm/anx7447.c index f3ed1589b0..0d263e6061 100644 --- a/driver/tcpm/anx7447.c +++ b/driver/tcpm/anx7447.c @@ -489,7 +489,7 @@ static int anx7447_mux_set(int port, mux_state_t mux_state) cc_direction = mux_state & MUX_POLARITY_INVERTED; mux_type = mux_state & TYPEC_MUX_DOCK; - CPRINTS("mux_state = 0x%x, mux_type = 0x%x\n", mux_state, mux_type); + CPRINTS("mux_state = 0x%x, mux_type = 0x%x", mux_state, mux_type); if (cc_direction == 0) { /* cc1 connection */ |