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-04 17:24:31 -0600 |
commit | 6ae32c539c0412ca789fb6041be45eeabf78431c (patch) | |
tree | b36080d53311d18da30cd2ab502cb7c27200eedc /include | |
parent | 9a994e8ec7e7d6b1a66c74a683596b0f38f4e345 (diff) |
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 'include')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 3a24e4ff3248..8f170e9073a5 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1643,6 +1643,7 @@ void pcibios_set_master(struct pci_dev *dev); int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state); int pcibios_add_device(struct pci_dev *dev); +void pcibios_release_device(struct pci_dev *dev); #ifdef CONFIG_PCI_MMCONFIG void __init pci_mmcfg_early_init(void); |