mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
x86/PCI: make pci=lastbus=255 work when acpi is on
Impact: scan more peer root buses even acpi is used Move pci_bios_fixup_peer_bridges out of pci_legacy_init and into pci_subsys_init. This allows pci_bios_fixup_peer_bridges to be called even pci_apci_init is driving PCI initialization. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
898585172f
commit
e42d1fe804
1 changed files with 1 additions and 2 deletions
|
@ -50,8 +50,6 @@ static int __init pci_legacy_init(void)
|
||||||
if (pci_root_bus)
|
if (pci_root_bus)
|
||||||
pci_bus_add_devices(pci_root_bus);
|
pci_bus_add_devices(pci_root_bus);
|
||||||
|
|
||||||
pcibios_fixup_peer_bridges();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,6 +65,7 @@ int __init pci_subsys_init(void)
|
||||||
pci_visws_init();
|
pci_visws_init();
|
||||||
#endif
|
#endif
|
||||||
pci_legacy_init();
|
pci_legacy_init();
|
||||||
|
pcibios_fixup_peer_bridges();
|
||||||
pcibios_irq_init();
|
pcibios_irq_init();
|
||||||
pcibios_init();
|
pcibios_init();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue