diff options
author | Linas Vepstas <linas@austin.ibm.com> | 2007-04-13 18:34:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-05-02 22:02:40 -0400 |
commit | b5661479eeb863749ae28b9ee0dd288464311854 (patch) | |
tree | 74b1a43c8f9d16da240b9810f37ab51f431454d8 /drivers/pci | |
parent | e70ea2634afe7d04ffaf7417df7bfdbfdc460e10 (diff) |
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>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/rpadlpar_core.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/pci/hotplug/rpadlpar_core.c b/drivers/pci/hotplug/rpadlpar_core.c index 4d74f0b6079f..bb3c101c2c5a 100644 --- a/drivers/pci/hotplug/rpadlpar_core.c +++ b/drivers/pci/hotplug/rpadlpar_core.c | |||
@@ -387,13 +387,8 @@ int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn) | |||
387 | __FUNCTION__, drc_name); | 387 | __FUNCTION__, drc_name); |
388 | return -EIO; | 388 | return -EIO; |
389 | } | 389 | } |
390 | } else { | 390 | } else |
391 | struct pci_dev *dev, *tmp; | 391 | pcibios_remove_pci_devices(bus); |
392 | list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) { | ||
393 | eeh_remove_bus_device(dev); | ||
394 | pci_remove_bus_device(dev); | ||
395 | } | ||
396 | } | ||
397 | 392 | ||
398 | if (unmap_bus_range(bus)) { | 393 | if (unmap_bus_range(bus)) { |
399 | printk(KERN_ERR "%s: failed to unmap bus range\n", | 394 | printk(KERN_ERR "%s: failed to unmap bus range\n", |