Thread (44 messages) 44 messages, 10 authors, 2024-03-26
STALE834d LANDED

[PATCH 13/28] misc: vmci_guest: Use PCI_IRQ_ALL_TYPES

From: Damien Le Moal <dlemoal@kernel.org>
Date: 2024-03-25 07:10:38
Also in: amd-gfx, linux-pci, linux-rdma, linux-scsi, linux-serial, linux-sound, linux-usb, lkml, platform-driver-x86
Subsystem: char and misc drivers, the rest, vmware vmci driver · Maintainers: Arnd Bergmann, Greg Kroah-Hartman, Linus Torvalds, Bryan Tan, Vishnu Dasa

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.

Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
---
 drivers/misc/vmw_vmci/vmci_guest.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/misc/vmw_vmci/vmci_guest.c b/drivers/misc/vmw_vmci/vmci_guest.c
index 4f8d962bb5b2..c61e8953511d 100644
--- a/drivers/misc/vmw_vmci/vmci_guest.c
+++ b/drivers/misc/vmw_vmci/vmci_guest.c
@@ -787,8 +787,7 @@ static int vmci_guest_probe_device(struct pci_dev *pdev,
 	error = pci_alloc_irq_vectors(pdev, num_irq_vectors, num_irq_vectors,
 				      PCI_IRQ_MSIX);
 	if (error < 0) {
-		error = pci_alloc_irq_vectors(pdev, 1, 1,
-				PCI_IRQ_MSIX | PCI_IRQ_MSI | PCI_IRQ_LEGACY);
+		error = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
 		if (error < 0)
 			goto err_unsubscribe_event;
 	} else {
-- 
2.44.0
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help