Skip to content

Commit

Permalink
x86/pci: Changing subsystem initialization order for NUMA
Browse files Browse the repository at this point in the history
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Robert Richter authored and Ingo Molnar committed Jul 11, 2008
1 parent 2510495 commit 060b970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/x86/pci/legacy.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ static int __init pci_legacy_init(void)

int __init pci_subsys_init(void)
{
#ifdef CONFIG_X86_NUMAQ
pci_numa_init();
#endif
#ifdef CONFIG_ACPI
pci_acpi_init();
#endif
pci_legacy_init();
pcibios_irq_init();
#ifdef CONFIG_X86_NUMAQ
pci_numa_init();
#endif
pcibios_init();

return 0;
Expand Down

0 comments on commit 060b970

Please sign in to comment.