Use %p instead of %x to print void *.

Signed-off-by: Jonathan Kollasch <jakll...@kollasch.net>
Acked-by: Jonathan Kollasch <jakll...@kollasch.net>
---
Index: src/northbridge/amd/amdk8/debug.c
===================================================================
--- src/northbridge/amd/amdk8/debug.c   (revision 5914)
+++ src/northbridge/amd/amdk8/debug.c   (working copy)
@@ -6,7 +6,7 @@
 static inline void print_debug_addr(const char *str, void *val)
 {
 #if CONFIG_DEBUG_CAR
-               printk(BIOS_DEBUG, "------Address debug: %s%x------\n", str, 
val);
+       printk(BIOS_DEBUG, "------Address debug: %s%p------\n", str, val);
 #endif
 }
 
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to