aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rapidio/devices
diff options
context:
space:
mode:
authorAlexander Gordeev <agordeev@redhat.com>2014-06-06 17:37:16 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 19:08:13 -0400
commit1c92ab1e742b0636e5c4c63792e20020cdf16caf (patch)
tree7257f79b1f97a4af7603a7f160dc68af1027d69f /drivers/rapidio/devices
parentdcbff5d1effbbd52be1ed9f2efb6c8d0445ad188 (diff)
rapidio/tsi721: use pci_enable_msix_exact() instead of pci_enable_msix()
As result of deprecation of MSI-X/MSI enablement functions pci_enable_msix() and pci_enable_msi_block() all drivers using these two interfaces need to be updated to use the new pci_enable_msi_range() or pci_enable_msi_exact() and pci_enable_msix_range() or pci_enable_msix_exact() interfaces. The patch has no runtime effect. Signed-off-by: Alexander Gordeev <agordeev@redhat.com> Cc: Matt Porter <mporter@kernel.crashing.org> Acked-by: Alexandre Bounine <alexandre.bounine@idt.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rapidio/devices')
-rw-r--r--drivers/rapidio/devices/tsi721.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/rapidio/devices/tsi721.c b/drivers/rapidio/devices/tsi721.c
index 1753dc693c15..2ca1a0b3ad57 100644
--- a/drivers/rapidio/devices/tsi721.c
+++ b/drivers/rapidio/devices/tsi721.c
@@ -768,15 +768,10 @@ static int tsi721_enable_msix(struct tsi721_device *priv)
768 } 768 }
769#endif /* CONFIG_RAPIDIO_DMA_ENGINE */ 769#endif /* CONFIG_RAPIDIO_DMA_ENGINE */
770 770
771 err = pci_enable_msix(priv->pdev, entries, ARRAY_SIZE(entries)); 771 err = pci_enable_msix_exact(priv->pdev, entries, ARRAY_SIZE(entries));
772 if (err) { 772 if (err) {
773 if (err > 0) 773 dev_err(&priv->pdev->dev,
774 dev_info(&priv->pdev->dev, 774 "Failed to enable MSI-X (err=%d)\n", err);
775 "Only %d MSI-X vectors available, "
776 "not using MSI-X\n", err);
777 else
778 dev_err(&priv->pdev->dev,
779 "Failed to enable MSI-X (err=%d)\n", err);
780 return err; 775 return err;
781 } 776 }
782 777