diff options
author | Michael Neuling <mikey@neuling.org> | 2015-05-27 09:07:00 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-06-03 06:27:16 +0300 |
commit | abeeed6d3d9948b3235a5bb77759d8c1f84de39d (patch) | |
tree | 6ebad5a03926155f09f58d7620ffafcd1da2bd06 /arch/powerpc/include/asm/pci-bridge.h | |
parent | 7a8e6bbf8593a9395dd6c61f7c5f421570600017 (diff) | |
download | linux-abeeed6d3d9948b3235a5bb77759d8c1f84de39d.tar.xz |
powerpc/pci: Add pcibios_disable_device() hook
This adds a hook into the powerpc pci code for pci_disable_device() calls. The
generic code already provides a weak pcibios_disable_device() symbol, so we
just need to provide our own in powerpc and it'll get picked up.
This is passed directly to the phb controller ops, provided one exists.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/pci-bridge.h')
-rw-r--r-- | arch/powerpc/include/asm/pci-bridge.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/pci-bridge.h b/arch/powerpc/include/asm/pci-bridge.h index 3947749de280..b76cd5682a8c 100644 --- a/arch/powerpc/include/asm/pci-bridge.h +++ b/arch/powerpc/include/asm/pci-bridge.h @@ -27,6 +27,8 @@ struct pci_controller_ops { * allow assignment/enabling of the device. */ bool (*enable_device_hook)(struct pci_dev *); + void (*disable_device)(struct pci_dev *); + void (*release_device)(struct pci_dev *); /* Called during PCI resource reassignment */ |