Prev: [PATCH 11/11] watchdog/hpwdt: formatting of pointers in printk()
Next: [PATCH 01/11] arch/h8300/kernel/traps.c: formatting of pointers in printk()
From: Kulikov Vasiliy on 14 Jul 2010 14:10 Use %p instead of %08x in printk(). Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- arch/xtensa/platforms/xtavnet/setup.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/xtensa/platforms/xtavnet/setup.c b/arch/xtensa/platforms/xtavnet/setup.c index 256fcb2..1597dbf 100644 --- a/arch/xtensa/platforms/xtavnet/setup.c +++ b/arch/xtensa/platforms/xtavnet/setup.c @@ -213,7 +213,7 @@ void platform_init(bp_tag_t *bootparams) { printk("\n"); if( bootparams ) - printk("XTAVnet: platform_init(bootparams:0x%x)\n", (unsigned)bootparams); + printk("XTAVnet: platform_init(bootparams:%p)\n", bootparams); } static int xtavnet_init(void) -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |