Skip to content

Commit ef083b6

Browse files
damien-lemoalbjorn-helgaas
authored andcommitted
VMCI: Use PCI_IRQ_ALL_TYPES to remove PCI_IRQ_LEGACY use
In vmci_guest_probe_device(), remove the reference to PCI_IRQ_LEGACY by using PCI_IRQ_ALL_TYPES instead of an explicit OR of all IRQ types. Link: https://lore.kernel.org/r/20240325070944.3600338-14-dlemoal@kernel.org Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent d6f0bbc commit ef083b6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/misc/vmw_vmci/vmci_guest.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,8 +787,7 @@ static int vmci_guest_probe_device(struct pci_dev *pdev,
787787
error = pci_alloc_irq_vectors(pdev, num_irq_vectors, num_irq_vectors,
788788
PCI_IRQ_MSIX);
789789
if (error < 0) {
790-
error = pci_alloc_irq_vectors(pdev, 1, 1,
791-
PCI_IRQ_MSIX | PCI_IRQ_MSI | PCI_IRQ_LEGACY);
790+
error = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
792791
if (error < 0)
793792
goto err_unsubscribe_event;
794793
} else {

0 commit comments

Comments
 (0)