mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
c37a668481
Fix the compilation issue when CONFIG_DEBUG_UART is activated
drivers/serial/serial_stm32.o: in function `debug_uart_init':
drivers/serial/serial_stm32.c:291: undefined reference to \
`board_debug_uart_init'
The board_debug_uart_init is needed for SPL boot, called in
cpu.c::mach_cpu_init(); it is defined in board/st/stm32mp1/spl.c.
But with the removal #ifdefs patch, the function debug_uart_init() is
always compiled even if not present in the final U-Boot image.
This patch adds a file to provided this function when DEBUG_UART and SPL
are activated.
Fixes:
|
||
---|---|---|
.. | ||
cmd_stm32prog | ||
include/mach | ||
boot_params.c | ||
bsec.c | ||
cmd_stm32key.c | ||
cpu.c | ||
dram_init.c | ||
ecdsa_romapi.c | ||
fdt.c | ||
Kconfig | ||
Kconfig.13x | ||
Kconfig.15x | ||
Makefile | ||
psci.c | ||
pwr_regulator.c | ||
spl.c | ||
stm32mp13x.c | ||
stm32mp15x.c | ||
syscon.c | ||
tzc400.c |