summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/console/console.h18
-rw-r--r--src/include/console/uart.h1
2 files changed, 0 insertions, 19 deletions
diff --git a/src/include/console/console.h b/src/include/console/console.h
index c184f83e20..0ebd1b70a9 100644
--- a/src/include/console/console.h
+++ b/src/include/console/console.h
@@ -24,24 +24,6 @@
#include <console/loglevel.h>
#include <console/post_codes.h>
-#ifndef __PRE_RAM__
-unsigned char console_rx_byte(void);
-int console_tst_byte(void);
-struct console_driver {
- void (*init)(void);
- void (*tx_byte)(unsigned char byte);
- void (*tx_flush)(void);
- unsigned char (*rx_byte)(void);
- int (*tst_byte)(void);
-};
-
-#define __console __attribute__((used, __section__ (".rodata.console_drivers")))
-
-/* Defined by the linker... */
-extern struct console_driver console_drivers[];
-extern struct console_driver econsole_drivers[];
-#endif
-
#ifndef __ROMCC__
int console_log_level(int msg_level);
void console_init(void);
diff --git a/src/include/console/uart.h b/src/include/console/uart.h
index 68abf6f157..4551408285 100644
--- a/src/include/console/uart.h
+++ b/src/include/console/uart.h
@@ -43,7 +43,6 @@ void uart_init(void);
void uart_tx_byte(unsigned char data);
void uart_tx_flush(void);
unsigned char uart_rx_byte(void);
-int uart_can_rx_byte(void);
unsigned int uart_platform_base(int idx);