diff options
| author | Tom Rini <[email protected]> | 2019-07-23 09:48:16 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-07-23 09:48:16 -0400 |
| commit | 9565bd7c6f4241af746fd67ee5c8406a99c148b3 (patch) | |
| tree | c31be6d08ea72efde423a1cde4483493eb9d3a18 /arch | |
| parent | 79ea03b38a8e9a4488473b5ee57f3fab8d360f17 (diff) | |
| parent | 89e39172301f15b29f663baf704bf2163a0cfa46 (diff) | |
Merge tag 'rockchip-for-v2019.07-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip
- rk3399 sdhci driver fixup
- TPL BANNER fixup
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-rockchip/tpl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/tpl.c b/arch/arm/mach-rockchip/tpl.c index 0ff2a197edb..55f6e922d0a 100644 --- a/arch/arm/mach-rockchip/tpl.c +++ b/arch/arm/mach-rockchip/tpl.c @@ -44,7 +44,7 @@ void board_init_f(ulong dummy) struct udevice *dev; int ret; -#ifdef CONFIG_DEBUG_UART +#if defined(CONFIG_DEBUG_UART) && defined(CONFIG_TPL_SERIAL_SUPPORT) /* * Debug UART can be used from here if required: * @@ -54,9 +54,11 @@ void board_init_f(ulong dummy) * printascii("string"); */ debug_uart_init(); +#ifdef CONFIG_TPL_BANNER_PRINT printascii("\nU-Boot TPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \ U_BOOT_TIME ")\n"); #endif +#endif ret = spl_early_init(); if (ret) { debug("spl_early_init() failed: %d\n", ret); |
