The stm32mp1 specific code prints the image entry point unconditionally before jumping to the next-stage image, unlike the generic SPL implementation in common/spl/spl.c.
Signed-off-by: Sean Nyekjaer <[email protected]> --- arch/arm/mach-stm32mp/stm32mp1/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-stm32mp/stm32mp1/cpu.c b/arch/arm/mach-stm32mp/stm32mp1/cpu.c index 252aef1852e..ea5d8a648df 100644 --- a/arch/arm/mach-stm32mp/stm32mp1/cpu.c +++ b/arch/arm/mach-stm32mp/stm32mp1/cpu.c @@ -361,7 +361,7 @@ void __noreturn jump_to_image(struct spl_image_info *spl_image) image_entry_stm32_t image_entry = (image_entry_stm32_t)spl_image->entry_point; - printf("image entry point: 0x%lx\n", spl_image->entry_point); + debug("image entry point: 0x%lx\n", spl_image->entry_point); image_entry(romapi); } #endif -- 2.52.0

