diff options
| author | Marek Vasut <[email protected]> | 2025-11-19 00:17:23 +0100 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2025-12-09 15:24:36 +0100 |
| commit | 78e94666dd794ccfab561a9ef6e5b9d6a785ee97 (patch) | |
| tree | 23b832adbbe76a906b308149b5d251940307f474 | |
| parent | 86ff2cfa80e9abb71789b299cfcbfc0b9337174d (diff) | |
ARM: stm32: Add missing build of debug UART init code on DH STM32MP1 DHSOM
Commit c37a6684818d ("stm32mp: fix compilation issue with DEBUG_UART")
split the debug UART initialization code into two files, but failed to
update other non-ST boards. This did not lead to noticeable breakage
until debug UART is enabled, which is not the default. Update the
Makefile accordingly to allow debug UART to work.
Fixes: c37a6684818d ("stm32mp: fix compilation issue with DEBUG_UART")
Signed-off-by: Marek Vasut <[email protected]>
Reviewed-by: Patrice Chotard <[email protected]>
| -rw-r--r-- | board/dhelectronics/dh_stm32mp1/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/dhelectronics/dh_stm32mp1/Makefile b/board/dhelectronics/dh_stm32mp1/Makefile index 2f4a301d1a0..429e01453bb 100644 --- a/board/dhelectronics/dh_stm32mp1/Makefile +++ b/board/dhelectronics/dh_stm32mp1/Makefile @@ -3,6 +3,8 @@ # Copyright (C) 2018, STMicroelectronics - All Rights Reserved # +obj-$(CONFIG_DEBUG_UART_BOARD_INIT) += ../../st/stm32mp1/debug_uart.o + obj-$(CONFIG_PMIC_STPMIC1) += ../../st/common/stpmic1.o obj-y += board.o |
