diff options
Diffstat (limited to 'arch/x86/kernel/x86_init.c')
-rw-r--r-- | arch/x86/kernel/x86_init.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c index bc9b230ef402..c46984d122dc 100644 --- a/arch/x86/kernel/x86_init.c +++ b/arch/x86/kernel/x86_init.c | |||
@@ -19,6 +19,7 @@ | |||
19 | void __cpuinit x86_init_noop(void) { } | 19 | void __cpuinit x86_init_noop(void) { } |
20 | void __init x86_init_uint_noop(unsigned int unused) { } | 20 | void __init x86_init_uint_noop(unsigned int unused) { } |
21 | void __init x86_init_pgd_noop(pgd_t *unused) { } | 21 | void __init x86_init_pgd_noop(pgd_t *unused) { } |
22 | int __init iommu_init_noop(void) { return 0; } | ||
22 | 23 | ||
23 | /* | 24 | /* |
24 | * The platform setup functions are preset with the default functions | 25 | * The platform setup functions are preset with the default functions |
@@ -63,6 +64,10 @@ struct x86_init_ops x86_init __initdata = { | |||
63 | .tsc_pre_init = x86_init_noop, | 64 | .tsc_pre_init = x86_init_noop, |
64 | .timer_init = hpet_time_init, | 65 | .timer_init = hpet_time_init, |
65 | }, | 66 | }, |
67 | |||
68 | .iommu = { | ||
69 | .iommu_init = iommu_init_noop, | ||
70 | }, | ||
66 | }; | 71 | }; |
67 | 72 | ||
68 | struct x86_cpuinit_ops x86_cpuinit __cpuinitdata = { | 73 | struct x86_cpuinit_ops x86_cpuinit __cpuinitdata = { |