Fix console prototypes for non-romcc boards.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5347 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Myles Watson 2010-04-02 21:39:12 +00:00
parent a4fa5ee88c
commit b54deb77f0
2 changed files with 7 additions and 3 deletions

View File

@ -4,14 +4,17 @@
#include <stdint.h>
#include <console/loglevel.h>
#ifndef __PRE_RAM__
#ifndef __ROMCC__
void console_init(void);
void post_code(u8 value);
void __attribute__ ((noreturn)) die(const char *msg);
#endif
#ifndef __PRE_RAM__
void console_tx_byte(unsigned char byte);
void console_tx_flush(void);
unsigned char console_rx_byte(void);
int console_tst_byte(void);
void post_code(u8 value);
void __attribute__ ((noreturn)) die(const char *msg);
#if CONFIG_CONSOLE_VGA == 1
void vga_console_init(void);
#endif

View File

@ -37,6 +37,7 @@ void move_gdt(void);
/* Defined in src/lib/ramtest.c */
void ram_check(unsigned long start, unsigned long stop);
void quick_ram_check(void);
/* Defined in src/pc80/serial.c */
void uart_init(void);