mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 22:10:55 +07:00
PCI: Rename pci_remove_behind_bridge to pci_stop_and_remove_behind_bridge
The old pci_remove_behind_bridge actually do stop and remove. Make the name reflect that to reduce confusion. Suggested-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
210647af89
commit
6754b9e9c3
@ -127,14 +127,15 @@ static void pci_stop_behind_bridge(struct pci_dev *dev)
|
||||
}
|
||||
|
||||
/**
|
||||
* pci_remove_behind_bridge - remove all devices behind a PCI bridge
|
||||
* 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_remove_behind_bridge(struct pci_dev *dev)
|
||||
void pci_stop_and_remove_behind_bridge(struct pci_dev *dev)
|
||||
{
|
||||
pci_stop_behind_bridge(dev);
|
||||
__pci_remove_behind_bridge(dev);
|
||||
@ -175,5 +176,5 @@ void pci_stop_bus_device(struct pci_dev *dev)
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
|
||||
EXPORT_SYMBOL(pci_remove_behind_bridge);
|
||||
EXPORT_SYMBOL(pci_stop_and_remove_behind_bridge);
|
||||
EXPORT_SYMBOL_GPL(pci_stop_bus_device);
|
||||
|
@ -108,5 +108,5 @@ void cb_free(struct pcmcia_socket *s)
|
||||
struct pci_dev *bridge = s->cb_dev;
|
||||
|
||||
if (bridge)
|
||||
pci_remove_behind_bridge(bridge);
|
||||
pci_stop_and_remove_behind_bridge(bridge);
|
||||
}
|
||||
|
@ -946,7 +946,7 @@ int __must_check __pci_register_driver(struct pci_driver *, struct module *,
|
||||
__pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
|
||||
|
||||
void pci_unregister_driver(struct pci_driver *dev);
|
||||
void pci_remove_behind_bridge(struct pci_dev *dev);
|
||||
void pci_stop_and_remove_behind_bridge(struct pci_dev *dev);
|
||||
struct pci_driver *pci_dev_driver(const struct pci_dev *dev);
|
||||
int pci_add_dynid(struct pci_driver *drv,
|
||||
unsigned int vendor, unsigned int device,
|
||||
|
Loading…
Reference in New Issue
Block a user