summaryrefslogtreecommitdiffstats
path: root/Documentation/PCI
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-01-09 15:37:40 -0500
committerBjorn Helgaas <bhelgaas@google.com>2017-01-13 12:08:21 -0500
commit4fe0395550aeb6709ea5332f46de3644aef7d328 (patch)
tree2059e5b114a28fa3fe0ca8daf2cecb146236156f /Documentation/PCI
parente75377404726be171d66c154f8ea1e6cf840811d (diff)
PCI/MSI: Remove pci_enable_msi_{exact,range}()
All multi-MSI allocations are now done through pci_irq_alloc_vectors(), so remove the old pci_enable_msi_range() and pci_enable_msi_exact() interfaces. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'Documentation/PCI')
-rw-r--r--Documentation/PCI/MSI-HOWTO.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/PCI/MSI-HOWTO.txt b/Documentation/PCI/MSI-HOWTO.txt
index cd9c9f6a7cd9..1e37138027a3 100644
--- a/Documentation/PCI/MSI-HOWTO.txt
+++ b/Documentation/PCI/MSI-HOWTO.txt
@@ -162,8 +162,6 @@ The following old APIs to enable and disable MSI or MSI-X interrupts should
162not be used in new code: 162not be used in new code:
163 163
164 pci_enable_msi() /* deprecated */ 164 pci_enable_msi() /* deprecated */
165 pci_enable_msi_range() /* deprecated */
166 pci_enable_msi_exact() /* deprecated */
167 pci_disable_msi() /* deprecated */ 165 pci_disable_msi() /* deprecated */
168 pci_enable_msix_range() /* deprecated */ 166 pci_enable_msix_range() /* deprecated */
169 pci_enable_msix_exact() /* deprecated */ 167 pci_enable_msix_exact() /* deprecated */
@@ -268,5 +266,5 @@ or disabled (0). If 0 is found in any of the msi_bus files belonging
268to bridges between the PCI root and the device, MSIs are disabled. 266to bridges between the PCI root and the device, MSIs are disabled.
269 267
270It is also worth checking the device driver to see whether it supports MSIs. 268It is also worth checking the device driver to see whether it supports MSIs.
271For example, it may contain calls to pci_enable_msi_range() or 269For example, it may contain calls to pci_irq_alloc_vectors() with the
272pci_enable_msix_range(). 270PCI_IRQ_MSI or PCI_IRQ_MSIX flags.