summaryrefslogtreecommitdiff
path: root/src/include/uart8250.h
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2011-04-20 01:08:25 +0000
committerStefan Reinauer <stepan@openbios.org>2011-04-20 01:08:25 +0000
commitb297b4901a5e7dd0aa037b184329a0e96722149e (patch)
tree70c1f026eb451d914d50b81f3a42f7c3eb6138f0 /src/include/uart8250.h
parent012d867f731386309c5678d0d6636e4040b411c5 (diff)
downloadcoreboot-b297b4901a5e7dd0aa037b184329a0e96722149e.tar.xz
drop dead uart init code.
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6523 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/uart8250.h')
-rw-r--r--src/include/uart8250.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/uart8250.h b/src/include/uart8250.h
index 47cc88ed01..3918bf1333 100644
--- a/src/include/uart8250.h
+++ b/src/include/uart8250.h
@@ -131,11 +131,6 @@
#ifndef __ROMCC__
-// Can't we just drop this? It seems silly.
-struct uart8250 {
- unsigned int baud;
-};
-
unsigned char uart8250_rx_byte(unsigned base_port);
int uart8250_can_rx_byte(unsigned base_port);
void uart8250_tx_byte(unsigned base_port, unsigned char data);
@@ -144,7 +139,6 @@ void uart8250_tx_byte(unsigned base_port, unsigned char data);
* have three different sets of uart code, so it's an improvement.
*/
void uart8250_init(unsigned base_port, unsigned divisor);
-void init_uart8250(unsigned base_port, struct uart8250 *uart);
void uart_init(void);
#endif