Use %p instead of %08x in printk(). Signed-off-by: Kulikov Vasiliy <segooon@xxxxxxxxx> --- drivers/serial/crisv10.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/serial/crisv10.c b/drivers/serial/crisv10.c index ca47072..1be395a 100644 --- a/drivers/serial/crisv10.c +++ b/drivers/serial/crisv10.c @@ -4522,8 +4522,8 @@ static int __init rs_init(void) INIT_WORK(&info->work, do_softint); if (info->enabled) { - printk(KERN_INFO "%s%d at 0x%x is a builtin UART with DMA\n", - serial_driver->name, info->line, (unsigned int)info->ioport); + printk(KERN_INFO "%s%d at %p is a builtin UART with DMA\n", + serial_driver->name, info->line, info->ioport); } } #ifdef CONFIG_ETRAX_FAST_TIMER -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html