Commit ced04d15 authored by Andreas Noever's avatar Andreas Noever Committed by Bjorn Helgaas

PCI: Use request_resource_conflict() instead of insert_ for bus numbers

If a conflict happens during insert_resource_conflict() and all conflicts
fit within the newly inserted resource then they will become children of
the new resource. This is almost certainly not what we want for bus
numbers.
Signed-off-by: default avatarAndreas Noever <andreas.noever@gmail.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 619c8c31
...@@ -1835,7 +1835,7 @@ int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max) ...@@ -1835,7 +1835,7 @@ int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max)
res->flags |= IORESOURCE_PCI_FIXED; res->flags |= IORESOURCE_PCI_FIXED;
} }
conflict = insert_resource_conflict(parent_res, res); conflict = request_resource_conflict(parent_res, res);
if (conflict) if (conflict)
dev_printk(KERN_DEBUG, &b->dev, dev_printk(KERN_DEBUG, &b->dev,
......
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