summaryrefslogtreecommitdiff
path: root/arch/powerpc/lib/bootm.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-06-20 08:08:29 -0400
committerTom Rini <trini@konsulko.com>2022-06-20 08:08:29 -0400
commita9e90d357bbf539e07c1d971161e027eb335183e (patch)
treec0994366667aa4acdd55b8e5054d83a0560eb8a2 /arch/powerpc/lib/bootm.c
parent98c4828740f4944462b7d9608b95d5b73850c7b0 (diff)
parent7bc683afda5ede82cfcace77cecab1891d6d93ff (diff)
Merge tag 'fsl-qoriq-2022-6-20-v2' of https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq into next
Layerscape: add sfp driver Kconfig cleanup sl28 board update support hdp firmware loading powerpc: dts update for p2020 p1_p2_rdb_pc board update fsl_esdhc fallback to 1-bit mode support
Diffstat (limited to 'arch/powerpc/lib/bootm.c')
-rw-r--r--arch/powerpc/lib/bootm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/lib/bootm.c b/arch/powerpc/lib/bootm.c
index 3b43066bb4f..d365705856d 100644
--- a/arch/powerpc/lib/bootm.c
+++ b/arch/powerpc/lib/bootm.c
@@ -137,7 +137,8 @@ void arch_lmb_reserve(struct lmb *lmb)
if (size < bootm_size) {
ulong base = bootmap_base + size;
- printf("WARNING: adjusting available memory to %lx\n", size);
+ printf("WARNING: adjusting available memory from 0x%lx to 0x%llx\n",
+ size, (unsigned long long)bootm_size);
lmb_reserve(lmb, base, bootm_size - size);
}