diff options
-rw-r--r-- | board/nvidia/common/board.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index e772b3723cd..8adfe27d673 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -306,6 +306,9 @@ int board_init(void) #ifdef CONFIG_VIDEO_TEGRA2 lcd_pinmux_early_init(gd->blob); #endif +#ifdef CONFIG_DELAY_CONSOLE + init_uarts(gd->blob); +#endif /* Do clocks and UART first so that printf() works */ clock_init(); #ifdef CONFIG_SPI_UART_SWITCH @@ -373,7 +376,9 @@ int board_early_init_f(void) clock_early_init(pllp_rate); pinmux_init(); +#ifndef CONFIG_DELAY_CONSOLE init_uarts(gd->blob); +#endif #ifdef CONFIG_VIDEO_TEGRA2 /* Get LCD panel size */ |