From: Pali Rohár Date: Sun, 11 Sep 2022 09:29:16 +0000 (+0200) Subject: powerpc/mpc85xx: Fix re-align of unmapped DDR memory message for non-SPL builds X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=6f915a5d24b1c8cf30a29d7edff01eb5951bef0b;p=u-boot.git powerpc/mpc85xx: Fix re-align of unmapped DDR memory message for non-SPL builds During init_dram() is called also setup_ddr_tlbs_phys() function which may print message about unmapped DDR memory. So in this case print also re-aligning filler after unmapped DDR memory message. Signed-off-by: Pali Rohár --- diff --git a/arch/powerpc/cpu/mpc85xx/tlb.c b/arch/powerpc/cpu/mpc85xx/tlb.c index 4e4ecb4d7f..e39fe14382 100644 --- a/arch/powerpc/cpu/mpc85xx/tlb.c +++ b/arch/powerpc/cpu/mpc85xx/tlb.c @@ -313,6 +313,9 @@ unsigned int setup_ddr_tlbs_phys(phys_addr_t p_addr, print_size(memsize > CONFIG_MAX_MEM_MAPPED ? memsize - CONFIG_MAX_MEM_MAPPED + size : size, " of DDR memory left unmapped in U-Boot\n"); +#ifndef CONFIG_SPL_BUILD + puts(" "); +#endif } return memsize_in_meg;