Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932636Ab0KLQeh (ORCPT ); Fri, 12 Nov 2010 11:34:37 -0500 Received: from mail.perches.com ([173.55.12.10]:4982 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932557Ab0KLQeg (ORCPT ); Fri, 12 Nov 2010 11:34:36 -0500 Subject: [PATCH V2] arch/arm/kernel/smp_twd.c: Correct local timer printk decimal output From: Joe Perches To: Russell King Cc: linux-kernel@vger.kernel.org, linux-arm-kernel In-Reply-To: <1289244455.29216.348.camel@Joe-Laptop> References: <1289244455.29216.348.camel@Joe-Laptop> Content-Type: text/plain; charset="UTF-8" Date: Fri, 12 Nov 2010 08:34:34 -0800 Message-ID: <1289579674.6519.76.camel@Joe-Laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1892 Lines: 63 The timer decimal place is shown incorrectly. The %100 divisor needs to have 1 fewer 0. Convert to unprefixed pr_/pr_cont while at it. Uncompiled/untested. Signed-off-by: Joe Perches --- V2: On Fri, 2010-11-12 at 16:12 +0000, Russell King - ARM Linux wrote: > I'd rather avoid core code having KBUILD_MODNAME prefix it. > The message is unique enough as is. Use a local #define pr_fmt(fmt) fmt so if ever a global change for pr_fmt is made, this won't need to be changed. arch/arm/kernel/smp_twd.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/arch/arm/kernel/smp_twd.c b/arch/arm/kernel/smp_twd.c index 35882fb..4f90183 100644 --- a/arch/arm/kernel/smp_twd.c +++ b/arch/arm/kernel/smp_twd.c @@ -8,6 +8,9 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ + +#define pr_fmt(fmt) fmt + #include #include #include @@ -89,7 +92,7 @@ static void __cpuinit twd_calibrate_rate(void) * the timer ticks */ if (twd_timer_rate == 0) { - printk(KERN_INFO "Calibrating local timer... "); + pr_info("Calibrating local timer... "); /* Wait for a tick to start */ waitjiffies = get_jiffies_64() + 1; @@ -113,8 +116,9 @@ static void __cpuinit twd_calibrate_rate(void) twd_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5); - printk("%lu.%02luMHz.\n", twd_timer_rate / 1000000, - (twd_timer_rate / 100000) % 100); + pr_cont("%lu.%02luMHz\n", + twd_timer_rate / 1000000, + (twd_timer_rate / 10000) % 100); } load = twd_timer_rate / HZ; -- 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/