diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-29 11:51:26 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-19 19:12:39 -0500 |
commit | 9325a28ce2fa7c597e5ed41455a06c30b82b5710 (patch) | |
tree | 8221302610bd01c53932284ac48fe78be88633e8 /arch/x86/include/asm/pci_x86.h | |
parent | ab3b37937e8f4fb38dc9780b7bc3fd3c5195cca3 (diff) |
x86: Add pcibios_fixup_irqs to x86_init
Platforms like Moorestown want to override the pcibios_fixup_irqs
default function. Add it to x86_init.pci.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <43F901BD926A4E43B106BF17856F07559FB80D00@orsmsx508.amr.corp.intel.com>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Jacob Pan <jacob.jun.pan@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/pci_x86.h')
-rw-r--r-- | arch/x86/include/asm/pci_x86.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pci_x86.h b/arch/x86/include/asm/pci_x86.h index 46511c5be456..6e69edfbf074 100644 --- a/arch/x86/include/asm/pci_x86.h +++ b/arch/x86/include/asm/pci_x86.h | |||
@@ -113,6 +113,7 @@ extern int __init pci_acpi_init(void); | |||
113 | extern void __init pcibios_irq_init(void); | 113 | extern void __init pcibios_irq_init(void); |
114 | extern int __init pcibios_init(void); | 114 | extern int __init pcibios_init(void); |
115 | extern int pci_legacy_init(void); | 115 | extern int pci_legacy_init(void); |
116 | extern void pcibios_fixup_irqs(void); | ||
116 | 117 | ||
117 | /* pci-mmconfig.c */ | 118 | /* pci-mmconfig.c */ |
118 | 119 | ||
@@ -188,7 +189,9 @@ static inline void mmio_config_writel(void __iomem *pos, u32 val) | |||
188 | # define x86_default_pci_init pci_legacy_init | 189 | # define x86_default_pci_init pci_legacy_init |
189 | # endif | 190 | # endif |
190 | # define x86_default_pci_init_irq pcibios_irq_init | 191 | # define x86_default_pci_init_irq pcibios_irq_init |
192 | # define x86_default_pci_fixup_irqs pcibios_fixup_irqs | ||
191 | #else | 193 | #else |
192 | # define x86_default_pci_init NULL | 194 | # define x86_default_pci_init NULL |
193 | # define x86_default_pci_init_irq NULL | 195 | # define x86_default_pci_init_irq NULL |
196 | # define x86_default_pci_fixup_irqs NULL | ||
194 | #endif | 197 | #endif |