summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-26 12:40:48 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-27 14:24:10 +0100
commita01e54d2015ea692e96f8909b3b1a75e0443445e (patch)
treec2313760cfa75a6bfb17f9524b78289847912fd1 /arch/ppc
parentea53e1b5724d78bc6e5cf49d48bf33bdef74faa5 (diff)
downloadbarebox-a01e54d2015ea692e96f8909b3b1a75e0443445e.tar.gz
barebox-a01e54d2015ea692e96f8909b3b1a75e0443445e.tar.xz
treewide: fix format specifiers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/lib/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc/lib/board.c b/arch/ppc/lib/board.c
index d2198627f9..18d2588e2c 100644
--- a/arch/ppc/lib/board.c
+++ b/arch/ppc/lib/board.c
@@ -52,8 +52,8 @@ void board_init_r (ulong end_of_ram)
*/
malloc_end = (_text_base - (128 << 10)) & ~(4095);
- debug("malloc_end: 0x%08x\n", malloc_end);
- debug("TEXT_BASE after relocation: 0x%08x\n", _text_base);
+ debug("malloc_end: 0x%08lx\n", malloc_end);
+ debug("TEXT_BASE after relocation: 0x%08lx\n", _text_base);
mem_malloc_init((void *)(malloc_end - MALLOC_SIZE), (void *)(malloc_end - 1));