aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/x86_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/x86_init.c')
-rw-r--r--arch/x86/kernel/x86_init.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c
index 3488fb62ac03..f2abe2136da1 100644
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@ -9,6 +9,7 @@
9#include <asm/mpspec.h> 9#include <asm/mpspec.h>
10#include <asm/setup.h> 10#include <asm/setup.h>
11#include <asm/e820.h> 11#include <asm/e820.h>
12#include <asm/irq.h>
12 13
13void __cpuinit x86_init_noop(void) { } 14void __cpuinit x86_init_noop(void) { }
14void __init x86_init_uint_noop(unsigned int unused) { } 15void __init x86_init_uint_noop(unsigned int unused) { }
@@ -35,4 +36,8 @@ struct __initdata x86_init_ops x86_init = {
35 .find_smp_config = default_find_smp_config, 36 .find_smp_config = default_find_smp_config,
36 .get_smp_config = default_get_smp_config, 37 .get_smp_config = default_get_smp_config,
37 }, 38 },
39
40 .irqs = {
41 .pre_vector_init = init_ISA_irqs,
42 },
38}; 43};