Ensure that the SoM and board code information is only printed when CONFIG_SPL_DISPLAY_PRINT is set.
Signed-off-by: Harald Seiler <h...@denx.de> --- board/dhelectronics/dh_stm32mp1/board.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/board/dhelectronics/dh_stm32mp1/board.c b/board/dhelectronics/dh_stm32mp1/board.c index f9cfabe2420..b933761d0de 100644 --- a/board/dhelectronics/dh_stm32mp1/board.c +++ b/board/dhelectronics/dh_stm32mp1/board.c @@ -229,8 +229,9 @@ static void board_get_coding_straps(void) gpio_free_list_nodev(gpio, ret); - printf("Code: SoM:rev=%d,ddr3=%d Board:rev=%d\n", - somcode, ddr3code, brdcode); + if (CONFIG_IS_ENABLED(DISPLAY_PRINT)) + printf("Code: SoM:rev=%d,ddr3=%d Board:rev=%d\n", + somcode, ddr3code, brdcode); } int board_stm32mp1_ddr_config_name_match(struct udevice *dev, -- 2.41.0