summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-02-06 15:56:00 -0800
committerGerrit Code Review <gerrit@gerrit-int.golo.chromium.org>2012-02-06 15:56:00 -0800
commitbd1d0b11c8fcc4263bd0ac26ffd2f2f61b00cf4d (patch)
tree7d0b9c64b0f20da408b96c72c8cb6d2cd32f8ad7 /include
parent99b297f990ffc5be5ed3dc91dc1f35e319ecf249 (diff)
parent300e7edb87b9f19bcf0a91a9c0273106e646d897 (diff)
downloadchrome-ec-bd1d0b11c8fcc4263bd0ac26ffd2f2f61b00cf4d.tar.gz
Merge "Add UART1 receive support (UART to x86 console)"
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 */