summaryrefslogtreecommitdiff
path: root/include/uart.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-10-25 16:53:58 -0700
committerGerrit <chrome-bot@google.com>2012-10-26 09:49:38 -0700
commitcf7f33d158848e11b4cca36533e7fac960ca65a3 (patch)
treeeb1435d4f977e81781d9cf6e3e90a1f965d66af0 /include/uart.h
parent7cf92c140d4f540c4704f6d2fa3a4759ed618ec9 (diff)
downloadchrome-ec-cf7f33d158848e11b4cca36533e7fac960ca65a3.tar.gz
Clean up uart buffering code
No functional changes. BUG=chrome-os-partner:15579 BRANCH=none TEST=help version -> prints help on version command Change-Id: I79c4b668513b6037aa6cf3fa1a2a8c0fc9856f41 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/36612 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'include/uart.h')
-rw-r--r--include/uart.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/uart.h b/include/uart.h
index 27293f7b0c..ce940457bd 100644
--- a/include/uart.h
+++ b/include/uart.h
@@ -18,15 +18,6 @@ int uart_init(void);
/* Return non-zero if UART init has completed. */
int uart_init_done(void);
-/* Enables console mode if <enable>!=0. In console mode:
- * - Input is echoed
- * - Input CRLF and CR are translated to LF
- * - Input backspace will remove characters from the input buffer (which
- * is pretty much only useful if the input handler is only triggered on
- * newline)
- * - Output LF is translated to CRLF */
-void uart_set_console_mode(int enable);
-
/*****************************************************************************/
/* Output functions
*