mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +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:
|
||
---|---|---|
.. | ||
common | ||
stih410-b2260 | ||
stm32f429-discovery | ||
stm32f429-evaluation | ||
stm32f469-discovery | ||
stm32f746-disco | ||
stm32h743-disco | ||
stm32h743-eval | ||
stm32h750-art-pi | ||
stm32mp1 | ||
stv0991 |