diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-02 07:50:10 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-02 07:57:12 -0400 |
commit | 3d1ba1da2b4ff4ace7801e99fb9a3095b182d847 (patch) | |
tree | b94e8958f06b9f64fdaa8f2f20849b6dafb1cc48 | |
parent | 88ff0a474e98f869d8c321e29481f298320100d6 (diff) |
x86: fix nmi.c build bug
apic.h needs to be included for the apic_write_around() definition.
-rw-r--r-- | arch/x86/kernel/nmi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/nmi.c b/arch/x86/kernel/nmi.c index bf143f191fb1..cbd4fa3c475b 100644 --- a/arch/x86/kernel/nmi.c +++ b/arch/x86/kernel/nmi.c | |||
@@ -11,6 +11,8 @@ | |||
11 | * Mikael Pettersson : PM converted to driver model. Disable/enable API. | 11 | * Mikael Pettersson : PM converted to driver model. Disable/enable API. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <asm/apic.h> | ||
15 | |||
14 | #include <linux/nmi.h> | 16 | #include <linux/nmi.h> |
15 | #include <linux/mm.h> | 17 | #include <linux/mm.h> |
16 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |