|
@@ -175,7 +175,7 @@ static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
|
|
|
struct pci_dev *dev;
|
|
|
struct pci_controller *phb;
|
|
|
|
|
|
- if (pcibios_find_pci_bus(dn))
|
|
|
+ if (pci_find_bus_by_node(dn))
|
|
|
return -EINVAL;
|
|
|
|
|
|
/* Add pci bus */
|
|
@@ -212,7 +212,7 @@ static int dlpar_remove_phb(char *drc_name, struct device_node *dn)
|
|
|
struct pci_dn *pdn;
|
|
|
int rc = 0;
|
|
|
|
|
|
- if (!pcibios_find_pci_bus(dn))
|
|
|
+ if (!pci_find_bus_by_node(dn))
|
|
|
return -EINVAL;
|
|
|
|
|
|
/* If pci slot is hotpluggable, use hotplug to remove it */
|
|
@@ -356,7 +356,7 @@ int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
|
|
|
|
|
|
pci_lock_rescan_remove();
|
|
|
|
|
|
- bus = pcibios_find_pci_bus(dn);
|
|
|
+ bus = pci_find_bus_by_node(dn);
|
|
|
if (!bus) {
|
|
|
ret = -EINVAL;
|
|
|
goto out;
|