aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/legacy.c
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2008-07-10 18:58:24 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-10 19:14:43 +0200
commit3f68f7d945e37e4d4bf1da445a285c59a6185815 (patch)
tree978360d1bf1b4f9ed59fe40e87c7298cb3c4af76 /arch/x86/pci/legacy.c
parentx86, VisWS: turn into generic arch, eliminate Kconfig specials (diff)
downloadlinux-dev-3f68f7d945e37e4d4bf1da445a285c59a6185815.tar.xz
linux-dev-3f68f7d945e37e4d4bf1da445a285c59a6185815.zip
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: Robert Richter <robert.richter@amd.com> Cc: Robert Richter <robert.richter@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci/legacy.c')
-rw-r--r--arch/x86/pci/legacy.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/pci/legacy.c b/arch/x86/pci/legacy.c
index 3c1d795cbbe9..d8b6e928590b 100644
--- a/arch/x86/pci/legacy.c
+++ b/arch/x86/pci/legacy.c
@@ -62,6 +62,9 @@ int __init pci_subsys_init(void)
#endif
pci_legacy_init();
pcibios_irq_init();
+#ifdef CONFIG_X86_NUMAQ
+ pci_numa_init();
+#endif
pcibios_init();
}
subsys_initcall(pci_subsys_init);