diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2014-04-14 09:14:06 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-04-25 12:17:06 -0600 |
commit | a30d0108b09ae46d24594a2e699c4dad21bb4af4 (patch) | |
tree | 2d8c52c8a03946d23f5bfd3cdbe24fac0a750259 /drivers/misc | |
parent | 1406276c1254d761da7c16b30aa32e3af2b3612a (diff) | |
download | linux-a30d0108b09ae46d24594a2e699c4dad21bb4af4.tar.gz linux-a30d0108b09ae46d24594a2e699c4dad21bb4af4.tar.bz2 linux-a30d0108b09ae46d24594a2e699c4dad21bb4af4.zip |
GenWQE: Use pci_enable_msi_exact() instead of pci_enable_msi_block()
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.
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Frank Haverkamp <haver@linux.vnet.ibm.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/genwqe/card_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/genwqe/card_utils.c b/drivers/misc/genwqe/card_utils.c index 6b1a6ef9f1a8..294f667ccab6 100644 --- a/drivers/misc/genwqe/card_utils.c +++ b/drivers/misc/genwqe/card_utils.c @@ -628,7 +628,7 @@ int genwqe_set_interrupt_capability(struct genwqe_dev *cd, int count) int rc; struct pci_dev *pci_dev = cd->pci_dev; - rc = pci_enable_msi_block(pci_dev, count); + rc = pci_enable_msi_exact(pci_dev, count); if (rc == 0) cd->flags |= GENWQE_FLAG_MSI_ENABLED; return rc; |