mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 06:37:59 +00:00
PCI: pciehp: use generic pci_hp_add_bridge()
Use the new generic pci_hp_add_bridge() interface. [bhelgaas: split "add generic pci_hp_add_bridge()" into a separate patch] Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
a8e4b9c101
commit
c6da81a4d3
1 changed files with 2 additions and 26 deletions
|
@ -34,29 +34,6 @@
|
||||||
#include "../pci.h"
|
#include "../pci.h"
|
||||||
#include "pciehp.h"
|
#include "pciehp.h"
|
||||||
|
|
||||||
static int __ref pciehp_add_bridge(struct pci_dev *dev)
|
|
||||||
{
|
|
||||||
struct pci_bus *parent = dev->bus;
|
|
||||||
int pass, busnr, start = parent->busn_res.start;
|
|
||||||
int end = parent->busn_res.end;
|
|
||||||
|
|
||||||
for (busnr = start; busnr <= end; busnr++) {
|
|
||||||
if (!pci_find_bus(pci_domain_nr(parent), busnr))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (busnr-- > end) {
|
|
||||||
err("No bus number available for hot-added bridge %s\n",
|
|
||||||
pci_name(dev));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
for (pass = 0; pass < 2; pass++)
|
|
||||||
busnr = pci_scan_bridge(parent, dev, busnr, pass);
|
|
||||||
if (!dev->subordinate)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int pciehp_configure_device(struct slot *p_slot)
|
int pciehp_configure_device(struct slot *p_slot)
|
||||||
{
|
{
|
||||||
struct pci_dev *dev;
|
struct pci_dev *dev;
|
||||||
|
@ -85,9 +62,8 @@ int pciehp_configure_device(struct slot *p_slot)
|
||||||
if (!dev)
|
if (!dev)
|
||||||
continue;
|
continue;
|
||||||
if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) ||
|
if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) ||
|
||||||
(dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) {
|
(dev->hdr_type == PCI_HEADER_TYPE_CARDBUS))
|
||||||
pciehp_add_bridge(dev);
|
pci_hp_add_bridge(dev);
|
||||||
}
|
|
||||||
pci_dev_put(dev);
|
pci_dev_put(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue