aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/mic/host
diff options
context:
space:
mode:
authorAlexander Gordeev <agordeev@redhat.com>2014-02-21 11:22:59 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-28 18:23:01 -0500
commitebba44ffcb848f38dfb9c95e5e20ebd2df3699a8 (patch)
treea1d17ebda30e46be19ffde796870b9cd168f4b26 /drivers/misc/mic/host
parent5877255dc57403f49b4961070b206b832c931201 (diff)
mic: 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. Signed-off-by: Alexander Gordeev <agordeev@redhat.com> Cc: Harshavardhan R Kharche <harshavardhan.r.kharche@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Cc: linux-pci@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mic/host')
-rw-r--r--drivers/misc/mic/host/mic_intr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/mic/host/mic_intr.c b/drivers/misc/mic/host/mic_intr.c
index f9c29bc918bc..dbc5afde1392 100644
--- a/drivers/misc/mic/host/mic_intr.c
+++ b/drivers/misc/mic/host/mic_intr.c
@@ -194,7 +194,7 @@ static int mic_setup_msix(struct mic_device *mdev, struct pci_dev *pdev)
194 for (i = 0; i < MIC_MIN_MSIX; i++) 194 for (i = 0; i < MIC_MIN_MSIX; i++)
195 mdev->irq_info.msix_entries[i].entry = i; 195 mdev->irq_info.msix_entries[i].entry = i;
196 196
197 rc = pci_enable_msix(pdev, mdev->irq_info.msix_entries, 197 rc = pci_enable_msix_exact(pdev, mdev->irq_info.msix_entries,
198 MIC_MIN_MSIX); 198 MIC_MIN_MSIX);
199 if (rc) { 199 if (rc) {
200 dev_dbg(&pdev->dev, "Error enabling MSIx. rc = %d\n", rc); 200 dev_dbg(&pdev->dev, "Error enabling MSIx. rc = %d\n", rc);