[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-5e85391b3badd3f0e50ebdd0cafe0202a979f73a@git.kernel.org>
Date: Thu, 13 May 2010 07:15:39 GMT
From: tip-bot for Ingo Molnar <mingo@...e.hu>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
peterz@...radead.org, gorcunov@...il.com, fweisbec@...il.com,
tglx@...utronix.de, mingo@...e.hu, dzickus@...hat.com
Subject: [tip:perf/nmi] x86, watchdog: Fix build error in hw_nmi.c
Commit-ID: 5e85391b3badd3f0e50ebdd0cafe0202a979f73a
Gitweb: http://git.kernel.org/tip/5e85391b3badd3f0e50ebdd0cafe0202a979f73a
Author: Ingo Molnar <mingo@...e.hu>
AuthorDate: Thu, 13 May 2010 09:12:39 +0200
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Thu, 13 May 2010 09:12:39 +0200
x86, watchdog: Fix build error in hw_nmi.c
On some configs the following build error triggers:
arch/x86/kernel/apic/hw_nmi.c:35: error: 'apic' undeclared (first use in this function)
arch/x86/kernel/apic/hw_nmi.c:35: error: (Each undeclared identifier is reported only once
arch/x86/kernel/apic/hw_nmi.c:35: error: for each function it appears in.)
Because asm/apic.h was only included implicitly. Include it explicitly.
Cc: Frederic Weisbecker <fweisbec@...il.com>
Cc: Don Zickus <dzickus@...hat.com>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Cyrill Gorcunov <gorcunov@...il.com>
LKML-Reference: <1273713674-8434-1-git-send-regression-fweisbec@...il.com>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/kernel/apic/hw_nmi.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/arch/x86/kernel/apic/hw_nmi.c b/arch/x86/kernel/apic/hw_nmi.c
index 3b40082..cefd694 100644
--- a/arch/x86/kernel/apic/hw_nmi.c
+++ b/arch/x86/kernel/apic/hw_nmi.c
@@ -8,6 +8,7 @@
* Bits copied from original nmi.c file
*
*/
+#include <asm/apic.h>
#include <linux/cpumask.h>
#include <linux/kdebug.h>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists