提交 3f68f7d9 编写于 作者: R Robert Richter 提交者: Ingo Molnar

x86/pci merge: fixing numaq initialization

Patch d49c4288 (tip/x86/mpparse) introduced some changes in calling
subsys_init calls if CONFIG_X86_NUMAQ option is set. This patch
updates subsystem initalization according to this changes.
Signed-off-by: NRobert Richter <robert.richter@amd.com>
Cc: Robert Richter <robert.richter@amd.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 15e551d2
...@@ -62,6 +62,9 @@ int __init pci_subsys_init(void) ...@@ -62,6 +62,9 @@ int __init pci_subsys_init(void)
#endif #endif
pci_legacy_init(); pci_legacy_init();
pcibios_irq_init(); pcibios_irq_init();
#ifdef CONFIG_X86_NUMAQ
pci_numa_init();
#endif
pcibios_init(); pcibios_init();
} }
subsys_initcall(pci_subsys_init); subsys_initcall(pci_subsys_init);
...@@ -151,7 +151,7 @@ static void __devinit pci_fixup_i450nx(struct pci_dev *d) ...@@ -151,7 +151,7 @@ static void __devinit pci_fixup_i450nx(struct pci_dev *d)
} }
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82451NX, pci_fixup_i450nx); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82451NX, pci_fixup_i450nx);
static int __init pci_numa_init(void) int __init pci_numa_init(void)
{ {
int quad; int quad;
...@@ -176,11 +176,3 @@ static int __init pci_numa_init(void) ...@@ -176,11 +176,3 @@ static int __init pci_numa_init(void)
} }
return 0; return 0;
} }
static __init int pci_subsys_init(void)
{
pci_numa_init();
pcibios_irq_init();
pcibios_init();
}
subsys_initcall(pci_subsys_init);
...@@ -107,6 +107,7 @@ extern void __init dmi_check_skip_isa_align(void); ...@@ -107,6 +107,7 @@ extern void __init dmi_check_skip_isa_align(void);
/* some common used subsys_initcalls */ /* some common used subsys_initcalls */
extern int __init pci_acpi_init(void); extern int __init pci_acpi_init(void);
extern int __init pcibios_irq_init(void); extern int __init pcibios_irq_init(void);
extern int __init pci_numa_init(void);
extern int __init pcibios_init(void); extern int __init pcibios_init(void);
/* pci-mmconfig.c */ /* pci-mmconfig.c */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册