spl: Always define preloader_console_init
authorSamuel Holland <samuel@sholland.org>
Thu, 7 May 2020 23:08:10 +0000 (18:08 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 15 May 2020 18:47:35 +0000 (14:47 -0400)
commit3988be5fd4369402c410336553bc0ca1920dbe6f
tree65e74e9f00c3258c8a716c616370e9a5d1c0a660
parent48069ff84fe5e5e0ad733bef4718e02600b518c4
spl: Always define preloader_console_init

A large number of boards call preloader_console_init unconditionally.
Currently, they fail to build with CONFIG_SPL_SERIAL=n, because the
function is undefined in that case. To fix the build, always define
preloader_console_init, but make it no-op when CONFIG_SPL_SERIAL=n.

For the few boards that did check for CONFIG_SPL_SERIAL before calling
preloader_console_init, remove the checks, since the function can now
be called unconditionally.

Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
arch/arm/mach-omap2/boot-common.c
arch/arm/mach-uniphier/spl_board_init.c
common/spl/spl.c