|
@@ -121,30 +121,6 @@ static void __pci_remove_behind_bridge(struct pci_dev *dev)
|
|
|
__pci_remove_bus_device(pci_dev_b(l));
|
|
|
}
|
|
|
|
|
|
-static void pci_stop_behind_bridge(struct pci_dev *dev)
|
|
|
-{
|
|
|
- struct list_head *l, *n;
|
|
|
-
|
|
|
- if (dev->subordinate)
|
|
|
- list_for_each_safe(l, n, &dev->subordinate->devices)
|
|
|
- pci_stop_bus_device(pci_dev_b(l));
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * pci_stop_and_remove_behind_bridge - stop and remove all devices behind
|
|
|
- * a PCI bridge
|
|
|
- * @dev: PCI bridge device
|
|
|
- *
|
|
|
- * Remove all devices on the bus, except for the parent bridge.
|
|
|
- * This also removes any child buses, and any devices they may
|
|
|
- * contain in a depth-first manner.
|
|
|
- */
|
|
|
-void pci_stop_and_remove_behind_bridge(struct pci_dev *dev)
|
|
|
-{
|
|
|
- pci_stop_behind_bridge(dev);
|
|
|
- __pci_remove_behind_bridge(dev);
|
|
|
-}
|
|
|
-
|
|
|
static void pci_stop_bus_devices(struct pci_bus *bus)
|
|
|
{
|
|
|
struct list_head *l, *n;
|
|
@@ -180,4 +156,3 @@ static void pci_stop_bus_device(struct pci_dev *dev)
|
|
|
}
|
|
|
|
|
|
EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
|
|
|
-EXPORT_SYMBOL(pci_stop_and_remove_behind_bridge);
|