PCI: eliminate redundant pci_stop_dev() call from pci_destroy_dev()
We always call pci_stop_bus_device before calling pci_destroy_dev. Since pci_stop_bus_device calls pci_stop_dev, there is no need for pci_destroy_dev to repeat the call. Signed-off-by: Alex Chiang <achiang@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
committed by
Jesse Barnes
parent
57fbf52c86
commit
af4c5f985a
@@ -32,8 +32,6 @@ static void pci_stop_dev(struct pci_dev *dev)
|
|||||||
|
|
||||||
static void pci_destroy_dev(struct pci_dev *dev)
|
static void pci_destroy_dev(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
pci_stop_dev(dev);
|
|
||||||
|
|
||||||
/* Remove the device from the device lists, and prevent any further
|
/* Remove the device from the device lists, and prevent any further
|
||||||
* list accesses from this device */
|
* list accesses from this device */
|
||||||
down_write(&pci_bus_sem);
|
down_write(&pci_bus_sem);
|
||||||
|
Reference in New Issue
Block a user