diff options
author | Ingo Molnar <mingo@elte.hu> | 2010-05-13 03:12:39 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-05-13 03:12:39 -0400 |
commit | 5e85391b3badd3f0e50ebdd0cafe0202a979f73a (patch) | |
tree | ed355b93120f4f932e0bbfd29ee595ed6c973150 | |
parent | 0167c781907fcdc3e1f144ef5ce31d402c91eb94 (diff) |
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@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Cyrill Gorcunov <gorcunov@gmail.com>
LKML-Reference: <1273713674-8434-1-git-send-regression-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | 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 3b40082f0371..cefd6942f0e9 100644 --- a/arch/x86/kernel/apic/hw_nmi.c +++ b/arch/x86/kernel/apic/hw_nmi.c | |||
@@ -8,6 +8,7 @@ | |||
8 | * Bits copied from original nmi.c file | 8 | * Bits copied from original nmi.c file |
9 | * | 9 | * |
10 | */ | 10 | */ |
11 | #include <asm/apic.h> | ||
11 | 12 | ||
12 | #include <linux/cpumask.h> | 13 | #include <linux/cpumask.h> |
13 | #include <linux/kdebug.h> | 14 | #include <linux/kdebug.h> |