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:
parent
a4fa5ee88c
commit
b54deb77f0
|
@ -4,14 +4,17 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <console/loglevel.h>
|
#include <console/loglevel.h>
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
#ifndef __ROMCC__
|
||||||
void console_init(void);
|
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_byte(unsigned char byte);
|
||||||
void console_tx_flush(void);
|
void console_tx_flush(void);
|
||||||
unsigned char console_rx_byte(void);
|
unsigned char console_rx_byte(void);
|
||||||
int console_tst_byte(void);
|
int console_tst_byte(void);
|
||||||
void post_code(u8 value);
|
|
||||||
void __attribute__ ((noreturn)) die(const char *msg);
|
|
||||||
#if CONFIG_CONSOLE_VGA == 1
|
#if CONFIG_CONSOLE_VGA == 1
|
||||||
void vga_console_init(void);
|
void vga_console_init(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -37,6 +37,7 @@ void move_gdt(void);
|
||||||
|
|
||||||
/* Defined in src/lib/ramtest.c */
|
/* Defined in src/lib/ramtest.c */
|
||||||
void ram_check(unsigned long start, unsigned long stop);
|
void ram_check(unsigned long start, unsigned long stop);
|
||||||
|
void quick_ram_check(void);
|
||||||
|
|
||||||
/* Defined in src/pc80/serial.c */
|
/* Defined in src/pc80/serial.c */
|
||||||
void uart_init(void);
|
void uart_init(void);
|
||||||
|
|
Loading…
Reference in New Issue