From: Pali Rohár Date: Fri, 9 Sep 2022 15:32:41 +0000 (+0200) Subject: board_f: Fix printing gd->ram_size and gd->ram_top X-Git-Tag: v2023.07~312^2~6^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d92aee57eca089e6732a5c3c79c3a319819e1bfd;p=platform%2Fkernel%2Fu-boot.git board_f: Fix printing gd->ram_size and gd->ram_top Members gd->ram_size and gd->ram_top are of type phys_addr_t which does not have to fit into ulong type. So cast them into unsigned long long. Fixes: 37dc958947ed ("global_data.h: Change ram_top type to phys_addr_t") Signed-off-by: Pali Rohár Reviewed-by: Simon Glass --- diff --git a/common/board_f.c b/common/board_f.c index aee3f56..970c8ff 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -328,7 +328,7 @@ static int setup_dest_addr(void) /* * Ram is setup, size stored in gd !! */ - debug("Ram size: %08lX\n", (ulong)gd->ram_size); + debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size); #if CONFIG_VAL(SYS_MEM_TOP_HIDE) /* * Subtract specified amount of memory to hide so that it won't @@ -348,7 +348,7 @@ static int setup_dest_addr(void) gd->ram_top = gd->ram_base + get_effective_memsize(); gd->ram_top = board_get_usable_ram_top(gd->mon_len); gd->relocaddr = gd->ram_top; - debug("Ram top: %08lX\n", (ulong)gd->ram_top); + debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top); #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) /* * We need to make sure the location we intend to put secondary core