diff options
author | Damien Le Moal <[email protected]> | 2024-03-25 16:09:33 +0900 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2024-05-16 14:35:08 -0500 |
commit | 290d6dbbecf1fa8d18354b90a39451275d320387 (patch) | |
tree | cef42efb5fb485fe6f4083981cce8aa0ef568e80 | |
parent | 416bdc4074fd7d9a653800902209d97a79650fad (diff) |
scsi: hpsa: 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/[email protected]
Signed-off-by: Damien Le Moal <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Acked-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/hpsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index af18d20f3079..23b19fa30661 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -7509,7 +7509,7 @@ fallback: */ static int hpsa_interrupt_mode(struct ctlr_info *h) { - unsigned int flags = PCI_IRQ_LEGACY; + unsigned int flags = PCI_IRQ_INTX; int ret; /* Some boards advertise MSI but don't really support it */ |