net: wangxun: Use PCI_IRQ_INTX instead of PCI_IRQ_LEGACY
authorDamien Le Moal <dlemoal@kernel.org>
Mon, 25 Mar 2024 07:09:29 +0000 (16:09 +0900)
committerBjorn Helgaas <bhelgaas@google.com>
Thu, 25 Apr 2024 17:53:32 +0000 (12:53 -0500)
Use the macro PCI_IRQ_INTX instead of the deprecated PCI_IRQ_LEGACY macro.

Link: https://lore.kernel.org/r/20240325070944.3600338-19-dlemoal@kernel.org
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/net/ethernet/wangxun/libwx/wx_lib.c

index 6dff2c85682d8bcdd97ca614447e205919d5decd..998c61c22ca1a3a360bef1fe814312818f0e0f16 100644 (file)
@@ -1674,14 +1674,14 @@ static int wx_set_interrupt_capability(struct wx *wx)
        /* minmum one for queue, one for misc*/
        nvecs = 1;
        nvecs = pci_alloc_irq_vectors(pdev, nvecs,
-                                     nvecs, PCI_IRQ_MSI | PCI_IRQ_LEGACY);
+                                     nvecs, PCI_IRQ_MSI | PCI_IRQ_INTX);
        if (nvecs == 1) {
                if (pdev->msi_enabled)
                        wx_err(wx, "Fallback to MSI.\n");
                else
-                       wx_err(wx, "Fallback to LEGACY.\n");
+                       wx_err(wx, "Fallback to INTx.\n");
        } else {
-               wx_err(wx, "Failed to allocate MSI/LEGACY interrupts. Error: %d\n", nvecs);
+               wx_err(wx, "Failed to allocate MSI/INTx interrupts. Error: %d\n", nvecs);
                return nvecs;
        }
 
@@ -2127,7 +2127,7 @@ void wx_write_eitr(struct wx_q_vector *q_vector)
  * wx_configure_vectors - Configure vectors for hardware
  * @wx: board private structure
  *
- * wx_configure_vectors sets up the hardware to properly generate MSI-X/MSI/LEGACY
+ * wx_configure_vectors sets up the hardware to properly generate MSI-X/MSI/INTx
  * interrupts.
  **/
 void wx_configure_vectors(struct wx *wx)