Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754614AbZA1EBM (ORCPT ); Tue, 27 Jan 2009 23:01:12 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752489AbZA1EA4 (ORCPT ); Tue, 27 Jan 2009 23:00:56 -0500 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:43589 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752182AbZA1EAz (ORCPT ); Tue, 27 Jan 2009 23:00:55 -0500 Message-ID: <497FD6B4.8090906@jp.fujitsu.com> Date: Wed, 28 Jan 2009 12:53:24 +0900 From: Yasuaki Ishimatsu User-Agent: Thunderbird 1.5.0.12 (X11/20071019) MIME-Version: 1.0 To: mingo@elte.hu, linux-kernel@vger.kernel.org Subject: [PATCH take2 3/3] fix typo "ACPI_PM_OVRRUN" -> "ACPI_PM_OVERRUN" References: <497FD4F3.3080006@jp.fujitsu.com> In-Reply-To: <497FD4F3.3080006@jp.fujitsu.com> Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2024 Lines: 54 This patch fixes typo. Signed-off-by: Yasuaki Ishimatsu --- arch/x86/kernel/apic.c | 2 +- arch/x86/kernel/tsc.c | 2 +- include/linux/acpi_pmtmr.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Index: linux-2.6.29-rc2/arch/x86/kernel/apic.c =================================================================== --- linux-2.6.29-rc2.orig/arch/x86/kernel/apic.c 2009-01-28 12:14:51.000000000 +0900 +++ linux-2.6.29-rc2/arch/x86/kernel/apic.c 2009-01-28 12:15:00.000000000 +0900 @@ -528,7 +528,7 @@ static void __init lapic_cal_handler(str lapic_cal_t2 = tapic; lapic_cal_tsc2 = tsc; if (pm < lapic_cal_pm1) - pm += ACPI_PM_OVRRUN; + pm += ACPI_PM_OVERRUN; lapic_cal_pm2 = pm; lapic_cal_j2 = jiffies; break; Index: linux-2.6.29-rc2/arch/x86/kernel/tsc.c =================================================================== --- linux-2.6.29-rc2.orig/arch/x86/kernel/tsc.c 2009-01-28 12:07:08.000000000 +0900 +++ linux-2.6.29-rc2/arch/x86/kernel/tsc.c 2009-01-28 12:15:00.000000000 +0900 @@ -161,7 +161,7 @@ static unsigned long calc_pmtimer_ref(u6 return ULONG_MAX; if (pm2 < pm1) - pm2 += (u64)ACPI_PM_OVRRUN; + pm2 += (u64)ACPI_PM_OVERRUN; pm2 -= pm1; tmp = pm2 * 1000000000LL; do_div(tmp, PMTMR_TICKS_PER_SEC); Index: linux-2.6.29-rc2/include/linux/acpi_pmtmr.h =================================================================== --- linux-2.6.29-rc2.orig/include/linux/acpi_pmtmr.h 2009-01-28 12:07:08.000000000 +0900 +++ linux-2.6.29-rc2/include/linux/acpi_pmtmr.h 2009-01-28 12:15:00.000000000 +0900 @@ -10,7 +10,7 @@ #define ACPI_PM_MASK CLOCKSOURCE_MASK(24) /* Overrun value */ -#define ACPI_PM_OVRRUN (1<<24) +#define ACPI_PM_OVERRUN (1<<24) #ifdef CONFIG_X86_PM_TIMER -- 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/