added rx support
[coreboot.git] / src / include / uart8250.h
index f6100266145b77957753b0d15ccdf535818934d7..dc09315dea0f7b1645262566bb47fb25a1bb97fc 100644 (file)
@@ -6,6 +6,8 @@ struct uart8250 {
        /* Do I need an lcs parameter here? */
 };
 
+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);
 void uart8250_init(unsigned base_port, unsigned divisor, unsigned lcs);
 void init_uart8250(unsigned base_port, struct uart8250 *uart);