usb_mux: Correct an error print.

BUG=none
BRANCH=none
TEST=none

Change-Id: Ica208bf8d6f34c856073b06633560de08792976c
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/368590
Reviewed-by: Martin Roth <martinroth@chromium.org>
Reviewed-by: Shawn N <shawnn@chromium.org>
This commit is contained in:
David Hendricks
2016-08-11 20:49:29 -07:00
committed by chrome-bot
parent b7025581e7
commit 78acb197a0

View File

@@ -70,7 +70,7 @@ int usb_mux_get(int port, const char **dp_str, const char **usb_str)
res = mux->driver->get(mux->port_addr, &mux_state);
if (res) {
CPRINTS("Error setting mux port(%d): %d", port, res);
CPRINTS("Error getting mux port(%d): %d", port, res);
return 0;
}