Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1422638AbVLOJTD (ORCPT ); Thu, 15 Dec 2005 04:19:03 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1422653AbVLOJS6 (ORCPT ); Thu, 15 Dec 2005 04:18:58 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:17066 "EHLO ZenIV.linux.org.uk") by vger.kernel.org with ESMTP id S1422651AbVLOJSf (ORCPT ); Thu, 15 Dec 2005 04:18:35 -0500 To: torvalds@osdl.org Subject: [PATCH] tlclk.c: pointers are handled by %p Cc: linux-kernel@vger.kernel.org Message-Id: From: Al Viro Date: Thu, 15 Dec 2005 09:18:35 +0000 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 959 Lines: 33 Signed-off-by: Al Viro --- drivers/char/tlclk.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) f1bbf945c86b729c20199133daba358284fa3c32 diff --git a/drivers/char/tlclk.c b/drivers/char/tlclk.c index 12167c0..e8467dc 100644 --- a/drivers/char/tlclk.c +++ b/drivers/char/tlclk.c @@ -776,8 +776,8 @@ static int __init tlclk_init(void) tlclk_device = platform_device_register_simple("telco_clock", -1, NULL, 0); if (!tlclk_device) { - printk(KERN_ERR " platform_device_register retruns 0x%X\n", - (unsigned int) tlclk_device); + printk(KERN_ERR " platform_device_register retruns 0x%p\n", + tlclk_device); ret = -EBUSY; goto out4; } -- 0.99.9.GIT - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/