Browse Source

PCI: rpaphp: Ensure more pcibios_add/pcibios_remove symmetry

Calls to pcibios_add should be symmetric with calls to pcibios_remove.

Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Cc: John Rose <johnrose@austin.ibm.com>
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Linas Vepstas 18 years ago
parent
commit
b5661479ee
1 changed files with 2 additions and 7 deletions
  1. 2 7
      drivers/pci/hotplug/rpadlpar_core.c

+ 2 - 7
drivers/pci/hotplug/rpadlpar_core.c

@@ -387,13 +387,8 @@ int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
 				__FUNCTION__, drc_name);
 				__FUNCTION__, drc_name);
 			return -EIO;
 			return -EIO;
 		}
 		}
-	} else {
-		struct pci_dev *dev, *tmp;
-		list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
-			eeh_remove_bus_device(dev);
-			pci_remove_bus_device(dev);
-		}
-	}
+	} else
+		pcibios_remove_pci_devices(bus);
 
 
 	if (unmap_bus_range(bus)) {
 	if (unmap_bus_range(bus)) {
 		printk(KERN_ERR "%s: failed to unmap bus range\n",
 		printk(KERN_ERR "%s: failed to unmap bus range\n",