mirror of https://gitee.com/openkylin/linux.git
staging: qlge/qlge_main.c: Replace depracated MSI API.
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>
This commit is contained in:
parent
b4383c971b
commit
4eab532dca
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue