diff options
| author | Michal Simek <monstr@monstr.eu> | 2012-07-02 10:31:29 +0200 | 
|---|---|---|
| committer | Michal Simek <monstr@monstr.eu> | 2012-07-10 11:54:06 +0200 | 
| commit | e0bb305df88c98215da6d16af3709863d59ee256 (patch) | |
| tree | 46bf32c4220d35b0d8c0d2dc89e860501e5d201f | |
| parent | 779bf42c2a278b2a2f8a4d9e4869c237d0a8742a (diff) | |
| download | olio-uboot-2014.01-e0bb305df88c98215da6d16af3709863d59ee256.tar.xz olio-uboot-2014.01-e0bb305df88c98215da6d16af3709863d59ee256.zip | |
microblaze: Call serial multi initialization
Signed-off-by: Michal Simek <monstr@monstr.eu>
Acked-by: Simon Glass <sjg@chromium.org>
| -rw-r--r-- | arch/microblaze/lib/board.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index 7c001d121..d3f259535 100644 --- a/arch/microblaze/lib/board.c +++ b/arch/microblaze/lib/board.c @@ -30,6 +30,7 @@  #include <version.h>  #include <watchdog.h>  #include <stdio_dev.h> +#include <serial.h>  #include <net.h>  #include <asm/processor.h> @@ -113,6 +114,10 @@ void board_init (void)  	 */  	mem_malloc_init (CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN); +#ifdef CONFIG_SERIAL_MULTI +	serial_initialize(); +#endif +  	for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {  		WATCHDOG_RESET ();  		if ((*init_fnc_ptr) () != 0) { |