aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/x86_init.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index 8ef56f21f9f0..b1d62bbcae3d 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -98,13 +98,15 @@ struct x86_init_iommu {
98 int (*iommu_init)(void); 98 int (*iommu_init)(void);
99}; 99};
100 100
101 /* 101/**
102 * struct x86_init_pci - platform specific pci init functions 102 * struct x86_init_pci - platform specific pci init functions
103 * @init: platform specific pci init 103 * @arch_init: platform specific pci arch init call
104 * @init: platform specific pci subsystem init
104 * @init_irq: platform specific pci irq init 105 * @init_irq: platform specific pci irq init
105 * @fixup_irqs: platform specific pci irq fixup 106 * @fixup_irqs: platform specific pci irq fixup
106 */ 107 */
107struct x86_init_pci { 108struct x86_init_pci {
109 int (*arch_init)(void);
108 int (*init)(void); 110 int (*init)(void);
109 void (*init_irq)(void); 111 void (*init_irq)(void);
110 void (*fixup_irqs)(void); 112 void (*fixup_irqs)(void);