[coreboot] [commit] r6194 - trunk/src/include/console

repository service svn at coreboot.org
Fri Dec 17 02:51:35 CET 2010


Author: stepan
Date: Fri Dec 17 02:51:34 2010
New Revision: 6194
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6194

Log:
fix the tree again. 
Signed-off-by: Stefan Reinauer <stepan at coreboot.org>
Acked-by: Stefan Reinauer <stepan at coreboot.org>

Modified:
   trunk/src/include/console/console.h

Modified: trunk/src/include/console/console.h
==============================================================================
--- trunk/src/include/console/console.h	Fri Dec 17 02:27:22 2010	(r6193)
+++ trunk/src/include/console/console.h	Fri Dec 17 02:51:34 2010	(r6194)
@@ -54,6 +54,9 @@
  * we could use the same code on all architectures.
  */
 #define console_loglevel CONFIG_DEFAULT_CONSOLE_LOGLEVEL
+#if CONFIG_CONSOLE_SERIAL8250
+#include <uart8250.h>
+#endif
 #endif
 
 #ifndef __ROMCC__
@@ -148,14 +151,15 @@
 #define print_spew_hex32(HEX)    printk(BIOS_SPEW,   "%08x", (HEX))
 #else
 
+/* __ROMCC__ */
+
 #if CONFIG_CONSOLE_SERIAL8250
-#include "lib/uart8259.c"
+#include "lib/uart8250.c"
 #endif
 #if CONFIG_CONSOLE_NE2K
 #include "lib/ne2k.c"
 #endif
 
-/* __ROMCC__ */
 static void __console_tx_byte(unsigned char byte)
 {
 #if CONFIG_CONSOLE_SERIAL8250




More information about the coreboot mailing list