projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64474e8
)
platform/x86: intel_ips: Use PCI_IRQ_INTX instead of PCI_IRQ_LEGACY
author
Damien Le Moal
<dlemoal@kernel.org>
Mon, 25 Mar 2024 07:09:18 +0000
(16:09 +0900)
committer
Bjorn Helgaas
<bhelgaas@google.com>
Thu, 25 Apr 2024 17:53:30 +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-8-dlemoal@kernel.org
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/intel_ips.c
patch
|
blob
|
history
diff --git
a/drivers/platform/x86/intel_ips.c
b/drivers/platform/x86/intel_ips.c
index ba38649cc1428603b09155ea5db75630a6910c53..73ec4460a151fadbc65d521929f9d08e33590903 100644
(file)
--- a/
drivers/platform/x86/intel_ips.c
+++ b/
drivers/platform/x86/intel_ips.c
@@
-1505,7
+1505,7
@@
static int ips_probe(struct pci_dev *dev, const struct pci_device_id *id)
* IRQ handler for ME interaction
* Note: don't use MSI here as the PCH has bugs.
*/
- ret = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_
LEGACY
);
+ ret = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_
INTX
);
if (ret < 0)
return ret;