Commit f19e8482 authored by Bjorn Helgaas's avatar Bjorn Helgaas

x86/PCI: Drop pcibios_scan_root() check for bus already scanned

The PCI core checks to see whether we've already scanned a bus, so we don't
need to do it in pcibios_scan_root().  Here's where it happens in the core:

  pcibios_scan_root
    pci_scan_bus_on_node
      pci_scan_root_bus
        pci_create_root_bus
	  b2 = pci_find_bus(pci_domain_nr(b), bus)
	  if (b2)
	    goto err_out;    # already scanned this bus

This removes the check from pcibios_scan_root().
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Acked-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 38dbfb59
...@@ -458,15 +458,6 @@ void __init dmi_check_pciprobe(void) ...@@ -458,15 +458,6 @@ void __init dmi_check_pciprobe(void)
struct pci_bus *pcibios_scan_root(int busnum) struct pci_bus *pcibios_scan_root(int busnum)
{ {
struct pci_bus *bus = NULL;
while ((bus = pci_find_next_bus(bus)) != NULL) {
if (bus->number == busnum) {
/* Already scanned */
return bus;
}
}
return pci_scan_bus_on_node(busnum, &pci_root_ops, return pci_scan_bus_on_node(busnum, &pci_root_ops,
get_mp_bus_to_node(busnum)); get_mp_bus_to_node(busnum));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment