diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2009-01-04 16:22:17 +0530 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-04 13:23:04 +0100 |
commit | 6a02e71099a87d13f2aa49cb491b5bfb5e662fae (patch) | |
tree | c592c749d1f005b5f8d0f673821f802214aad0ea | |
parent | 60d53c305805fcb612d3982dfef5c9e678e27f42 (diff) | |
download | linux-next-6a02e71099a87d13f2aa49cb491b5bfb5e662fae.tar.gz |
x86: irq.c fix style problems
Impact: cleanup
Fix:
WARNING: Use #include <linux/smp.h> instead of <asm/smp.h>
total: 0 errors, 1 warnings
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index bce53e1352a0..3973e2df7f87 100644 --- a/arch/x86/kernel/irq.c +++ b/arch/x86/kernel/irq.c @@ -5,10 +5,10 @@ #include <linux/interrupt.h> #include <linux/kernel_stat.h> #include <linux/seq_file.h> +#include <linux/smp.h> #include <asm/apic.h> #include <asm/io_apic.h> -#include <asm/smp.h> #include <asm/irq.h> atomic_t irq_err_count; |