diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-04 10:49:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-04 10:49:30 -0400 |
commit | b83e2858667dfaf2fb67331d0f45a2c39179ef91 (patch) | |
tree | 36046c483cf01bc35ae38ae474b57c985ead6b44 /drivers/ram | |
parent | 65b9b3462bec2966911658836983819ab4e4823e (diff) | |
parent | 6d91f0a3a14dd13a04946e672a4640fc65e4d275 (diff) | |
download | u-boot-b83e2858667dfaf2fb67331d0f45a2c39179ef91.tar.gz u-boot-b83e2858667dfaf2fb67331d0f45a2c39179ef91.tar.bz2 u-boot-b83e2858667dfaf2fb67331d0f45a2c39179ef91.zip |
Merge tag 'u-boot-stm32-20231004' of https://source.denx.de/u-boot/custodians/u-boot-stm
STM32 MCU:
_ alignment with kernel DT v6.5 for stm32f429 and stm32f746
_ rework way of displaying ST logo for stm32f746-disco and stm32f769-disco
STM32 MPU:
_ alignment with kernel DT v6.6-rc1
_ add RNG support for stm32mp13
_ add USB, USB boot and stm32prog command support for stm32mp13
_ add support of USART1 clock for stm32mp1
_ only print RAM and board code with SPL_DISPLAY_PRINT flag for
stm32mp1
_ rename update_sf to dh_update_sd_to_sf and add dh_update_sd_to_emmc
for stm32mp15xx DHCOR
[ Fix merge conflict at board/st/common/stm32mp_dfu.c ]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/ram')
-rw-r--r-- | drivers/ram/stm32mp1/stm32mp1_ram.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ram/stm32mp1/stm32mp1_ram.c b/drivers/ram/stm32mp1/stm32mp1_ram.c index 61bc002d97..a82b1db759 100644 --- a/drivers/ram/stm32mp1/stm32mp1_ram.c +++ b/drivers/ram/stm32mp1/stm32mp1_ram.c @@ -127,7 +127,8 @@ static int stm32mp1_ddr_setup(struct udevice *dev) dev_dbg(dev, "no st,mem-name\n"); return -EINVAL; } - printf("RAM: %s\n", config.info.name); + if (CONFIG_IS_ENABLED(DISPLAY_PRINT)) + printf("RAM: %s\n", config.info.name); for (idx = 0; idx < ARRAY_SIZE(param); idx++) { ret = ofnode_read_u32_array(node, param[idx].name, |