summaryrefslogtreecommitdiffstats
path: root/common/board_f.c
diff options
context:
space:
mode:
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2014-11-15 23:46:53 +0100
committerTom Rini <trini@ti.com>2014-11-23 06:49:03 -0500
commit9fdee7d7306b9747bdb0ce43e53424cfdc86b8c0 (patch)
treee33a32e1032f14207a053ca764f1dfe3d63149b5 /common/board_f.c
parent666ba8444e81c3785a427ae6922e2feededab9a3 (diff)
downloadblackbird-obmc-uboot-9fdee7d7306b9747bdb0ce43e53424cfdc86b8c0.tar.gz
blackbird-obmc-uboot-9fdee7d7306b9747bdb0ce43e53424cfdc86b8c0.zip
common/board_f: fix gcc warning on MIPS64
This fixes following warning when compiled with MIPS64 common/board_f.c: In function 'display_text_info': common/board_f.c:150:2: warning: format '%X' expects argument i of type 'unsigned int', but argument 2 has type 'long unsigned int' [-Wformat=] debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n", Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_f.c')
-rw-r--r--common/board_f.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/common/board_f.c b/common/board_f.c
index 57e8a673bd..d4d25d7955 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -142,17 +142,19 @@ static int init_baud_rate(void)
static int display_text_info(void)
{
#ifndef CONFIG_SANDBOX
- ulong bss_start, bss_end;
+ ulong bss_start, bss_end, text_base;
bss_start = (ulong)&__bss_start;
bss_end = (ulong)&__bss_end;
- debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n",
#ifdef CONFIG_SYS_TEXT_BASE
- CONFIG_SYS_TEXT_BASE, bss_start, bss_end);
+ text_base = CONFIG_SYS_TEXT_BASE;
#else
- CONFIG_SYS_MONITOR_BASE, bss_start, bss_end);
+ text_base = CONFIG_SYS_MONITOR_BASE;
#endif
+
+ debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
+ text_base, bss_start, bss_end);
#endif
#ifdef CONFIG_MODEM_SUPPORT
OpenPOWER on IntegriCloud