staging: qlge/qlge_main.c: Replace depracated MSI API.
authorSuraj Upadhyay <usuraj35@gmail.com>
Thu, 16 Jul 2020 08:58:11 +0000 (14:28 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Jul 2020 10:08:44 +0000 (12:08 +0200)
Replace the depracated MSI API pci_enable_msi()
with pci_alloc_irq_vectors().

Signed-off-by: Suraj Upadhyay <usuraj35@gmail.com>
Link: https://lore.kernel.org/r/20200716085811.GA29239@blackclown
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/qlge/qlge_main.c

index f7e26defb844aac6ece6ce51baccbaa62e292708..44ef00f1f8ee3490d09dcd6a282f7dabbd7e205b 100644 (file)
@@ -3181,7 +3181,7 @@ static void ql_enable_msix(struct ql_adapter *qdev)
 msi:
        qdev->intr_count = 1;
        if (qlge_irq_type == MSI_IRQ) {
-               if (!pci_enable_msi(qdev->pdev)) {
+               if (pci_alloc_irq_vectors(qdev->pdev, 1, 1, PCI_IRQ_MSI) >= 0) {
                        set_bit(QL_MSI_ENABLED, &qdev->flags);
                        netif_info(qdev, ifup, qdev->ndev,
                                   "Running with MSI interrupts.\n");