search for: a0abcd

Displaying 1 result from an estimated 1 matches for "a0abcd".

Did you mean: a00bcd
2008 Sep 27
0
[PATCH 5/6 v3] PCI: reserve bus range for SR-IOV
...c inline int pci_iov_resource_bar(struct pci_dev *dev, int resno, { return 0; } +extern inline int pci_iov_bus_range(struct pci_bus *bus) +{ + return 0; +} #endif /* CONFIG_PCI_IOV */ #endif /* DRIVERS_PCI_H */ diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index f18174e..a0abcde 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -1128,6 +1128,9 @@ unsigned int __devinit pci_scan_child_bus(struct pci_bus *bus) for (devfn = 0; devfn < 0x100; devfn += 8) pci_scan_slot(bus, devfn); + /* Reserve buses for SR-IOV capability. */ +...