diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2013-06-04 19:18:14 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-06-05 01:24:31 +0200 |
commit | 6ae32c539c0412ca789fb6041be45eeabf78431c (patch) | |
tree | b36080d53311d18da30cd2ab502cb7c27200eedc /drivers/pci/probe.c | |
parent | PCI: Replace strict_strtoul() with kstrtoul() (diff) | |
download | linux-6ae32c539c0412ca789fb6041be45eeabf78431c.tar.xz linux-6ae32c539c0412ca789fb6041be45eeabf78431c.zip |
PCI: Add pcibios_release_device()
Platforms may want to provide architecture-specific functionality when
a PCI device is released. Add a pcibios_release_device() call that
architectures can override to do so.
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r-- | drivers/pci/probe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 70f10fa3c1b2..58cc0a8a0979 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -1132,6 +1132,7 @@ static void pci_release_dev(struct device *dev) pci_dev = to_pci_dev(dev); pci_release_capabilities(pci_dev); pci_release_of_node(pci_dev); + pcibios_release_device(pci_dev); kfree(pci_dev); } |