diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-04-20 20:54:07 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2011-04-20 20:54:07 +0000 |
commit | 42fa7fe28b60b448f501e99ee285a0af12c86d34 (patch) | |
tree | 247586f11a5be9dcbea2cbafaede92df058ac14b /src/console | |
parent | d8129f92c0cbd6a561195c1628ba3f9f98eccd50 (diff) |
run uart_init() from console_init, just like the other console initialization functions.
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6531 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/console.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/console/console.c b/src/console/console.c index 3178562bb3..9ec0e259a9 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -22,6 +22,10 @@ #include <arch/hlt.h> #include <arch/io.h> +#if CONFIG_CONSOLE_SERIAL8250 +#include <uart8250.h> +#endif + #if CONFIG_CONSOLE_NE2K #include <console/ne2k.h> #endif @@ -99,6 +103,9 @@ void console_init(void) enable_usbdebug(CONFIG_USBDEBUG_DEFAULT_PORT); early_usbdebug_init(); #endif +#if CONFIG_CONSOLE_SERIAL8250 + uart_init(); +#endif #if CONFIG_CONSOLE_NE2K ne2k_init(CONFIG_CONSOLE_NE2K_IO_PORT); #endif |