diff options
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r-- | drivers/pci/probe.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index c31310db0404..376c61173b4e 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -2288,6 +2288,15 @@ void pcie_bus_configure_settings(struct pci_bus *bus) | |||
2288 | } | 2288 | } |
2289 | EXPORT_SYMBOL_GPL(pcie_bus_configure_settings); | 2289 | EXPORT_SYMBOL_GPL(pcie_bus_configure_settings); |
2290 | 2290 | ||
2291 | /* | ||
2292 | * Called after each bus is probed, but before its children are examined. This | ||
2293 | * is marked as __weak because multiple architectures define it. | ||
2294 | */ | ||
2295 | void __weak pcibios_fixup_bus(struct pci_bus *bus) | ||
2296 | { | ||
2297 | /* nothing to do, expected to be removed in the future */ | ||
2298 | } | ||
2299 | |||
2291 | unsigned int pci_scan_child_bus(struct pci_bus *bus) | 2300 | unsigned int pci_scan_child_bus(struct pci_bus *bus) |
2292 | { | 2301 | { |
2293 | unsigned int devfn, pass, max = bus->busn_res.start; | 2302 | unsigned int devfn, pass, max = bus->busn_res.start; |