Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1285
-gerrit
commit f67f26faa266db1314055283d10791f024b1018a Author: Marc Jones marc.jones@se-eng.com Date: Wed Jun 13 20:48:36 2012 -0600
Add uartmem_init prototype.
The oxpcie ramstage code calls uartmem_init after the PCI memory allocation, but hte function was static and didn't have a prototype.
Change-Id: Iabc1a3d248aeaed29aaaa22504defac97c572326 Signed-off-by: Marc Jones marc.jones@se-eng.com --- src/console/uart8250mem_console.c | 2 +- src/include/uart8250.h | 1 + 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/console/uart8250mem_console.c b/src/console/uart8250mem_console.c index 923df99..ed77237 100644 --- a/src/console/uart8250mem_console.c +++ b/src/console/uart8250mem_console.c @@ -23,7 +23,7 @@
static u32 uart_bar = 0;
-static void uartmem_init(void) +void uartmem_init(void) { uart_bar = uart_mem_init(); } diff --git a/src/include/uart8250.h b/src/include/uart8250.h index 71b9a5f..8457530 100644 --- a/src/include/uart8250.h +++ b/src/include/uart8250.h @@ -125,6 +125,7 @@ void uart8250_tx_flush(unsigned base_port); */ void uart8250_init(unsigned base_port, unsigned divisor); void uart_init(void); +void uartmem_init(void);
/* and the same for memory mapped uarts */ unsigned char uart8250_mem_rx_byte(unsigned base_port);