mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 21:23:23 +00:00
scsi: megaraid_sas: Use PCI_IRQ_INTX instead of PCI_IRQ_LEGACY
Use the macro PCI_IRQ_INTX instead of the deprecated PCI_IRQ_LEGACY macro. Link: https://lore.kernel.org/r/20240325070944.3600338-25-dlemoal@kernel.org Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
67908f6015
commit
529ed2d8b6
@ -6300,7 +6300,7 @@ static int megasas_init_fw(struct megasas_instance *instance)
|
||||
}
|
||||
|
||||
if (!instance->msix_vectors) {
|
||||
i = pci_alloc_irq_vectors(instance->pdev, 1, 1, PCI_IRQ_LEGACY);
|
||||
i = pci_alloc_irq_vectors(instance->pdev, 1, 1, PCI_IRQ_INTX);
|
||||
if (i < 0)
|
||||
goto fail_init_adapter;
|
||||
}
|
||||
@ -7839,7 +7839,7 @@ megasas_resume(struct device *dev)
|
||||
|
||||
if (!instance->msix_vectors) {
|
||||
rval = pci_alloc_irq_vectors(instance->pdev, 1, 1,
|
||||
PCI_IRQ_LEGACY);
|
||||
PCI_IRQ_INTX);
|
||||
if (rval < 0)
|
||||
goto fail_reenable_msix;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user