From: Stefan Reinauer Date: Wed, 31 Mar 2010 00:06:12 +0000 (+0000) Subject: mini part of the patch on the mailing list to fix the boards again X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=b8ac05d187c6cc4e777c96d39e075c5d97d93ffc;p=coreboot.git mini part of the patch on the mailing list to fix the boards again Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5340 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- diff --git a/src/include/console/console.h b/src/include/console/console.h index 239633609..851505138 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -4,6 +4,7 @@ #include #include +#ifndef __PRE_RAM__ void console_init(void); void console_tx_byte(unsigned char byte); void console_tx_flush(void); @@ -11,6 +12,9 @@ unsigned char console_rx_byte(void); int console_tst_byte(void); void post_code(uint8_t value); void __attribute__ ((noreturn)) die(const char *msg); +#if CONFIG_CONSOLE_VGA == 1 +void vga_console_init(void); +#endif struct console_driver { void (*init)(void); @@ -27,6 +31,8 @@ extern struct console_driver console_drivers[]; extern struct console_driver econsole_drivers[]; extern int console_loglevel; +#endif /* !__PRE_RAM__ */ + int do_printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, 2, 3))); #undef WE_CLEANED_UP_ALL_SIDE_EFFECTS @@ -110,8 +116,4 @@ int do_printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, #define print_debug_hex32(HEX) printk(BIOS_DEBUG, "%08x", (HEX)) #define print_spew_hex32(HEX) printk(BIOS_SPEW, "%08x", (HEX)) -#if CONFIG_CONSOLE_VGA == 1 -void vga_console_init(void); -#endif - #endif /* CONSOLE_CONSOLE_H_ */