summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/lpc.h3
-rw-r--r--include/uart.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/include/lpc.h b/include/lpc.h
index 94b92b41bb..d87d9bab7c 100644
--- a/include/lpc.h
+++ b/include/lpc.h
@@ -44,4 +44,7 @@ int lpc_comx_has_char(void);
/* Returns the next character pending on the COMx interface. */
int lpc_comx_get_char(void);
+/* Puts a character to the COMx LPC interface. */
+void lpc_comx_put_char(int c);
+
#endif /* __CROS_EC_LPC_H */
diff --git a/include/uart.h b/include/uart.h
index 32e8446c2d..163dce5726 100644
--- a/include/uart.h
+++ b/include/uart.h
@@ -175,7 +175,7 @@ void uart_process(void);
/* Returns non-zero if ok to put a character via uart_comx_putc(). */
int uart_comx_putc_ok(void);
-/* Puts a character to the COMx interface. */
+/* Puts a character to the COMx UART interface. */
void uart_comx_putc(int c);
#endif /* __CROS_EC_UART_H */