From 31575f6391912ff32eca4b990de55e771662998b Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 12 Mar 2016 12:17:48 -0800 Subject: coreinfo: Pretty print RAM addresses Instead of 500, print 0x00000500 in the ram dump module. Change-Id: Id250bd99f36dad4088ab88953fb371c400b4231b Signed-off-by: Stefan Reinauer Reviewed-on: https://review.coreboot.org/14072 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- payloads/coreinfo/ramdump_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/coreinfo/ramdump_module.c b/payloads/coreinfo/ramdump_module.c index a0ccc4f8f2..8401a61ab1 100644 --- a/payloads/coreinfo/ramdump_module.c +++ b/payloads/coreinfo/ramdump_module.c @@ -30,7 +30,7 @@ static void dump_ram(WINDOW *win, uint32_t addr, int row, int col) int i, x = 0, y = 0, count = 0; volatile uint8_t *ptr = (void *)(addr); - mvwprintw(win, 0, col + 54, "RAM address: %10x", addr); + mvwprintw(win, 0, col + 54, "RAM address: 0x%08x", addr); /* Dump 256 bytes of RAM. */ for (i = 1; i < 257; i++) { -- cgit v1.2.3