aboutsummaryrefslogtreecommitdiff
path: root/src/include/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/uart.h')
-rw-r--r--src/include/uart.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/include/uart.h b/src/include/uart.h
index 9601bfa7c9..b520e09bdb 100644
--- a/src/include/uart.h
+++ b/src/include/uart.h
@@ -17,28 +17,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/* madness. Uarts are a mess. If you include this file, it
- * includes ALL uart implementations which may be needed.
- * No need to include them separately, and include this file FIRST.
- * At least one (but at most one) of the files needs to define
- * uart_init().
- */
#ifndef UART_H
#define UART_H
-#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
-#include <uart8250.h>
-#endif
-
-#if CONFIG_CONSOLE_SERIAL_UART
unsigned char uart_rx_byte(void);
void uart_tx_byte(unsigned char data);
void uart_tx_flush(void);
void uart_init(void);
-#endif
-#if CONFIG_HAVE_UART_MEMORY_MAPPED
uint32_t uartmem_getbaseaddr(void);
-#endif
#endif /* UART_H */