diff options
author | 2024-03-12 18:59:05 +0200 | |
---|---|---|
committer | 2024-05-10 15:39:15 +0100 | |
commit | 858cea6b5a7498428edb04ce6ba43713cbca53c1 (patch) | |
tree | 71778f58f479e2b996b45bad9e97c8ca58200c75 /drivers/mfd/intel-lpss-pci.c | |
parent | Merge branches 'ib-mfd-misc-pinctrl-regulator-6.10', 'ib-mfd-pinctrl-regulator-6.10' and 'ib-mfd-regulator-6.10' into ibs-for-mfd-merged (diff) | |
download | wireguard-linux-858cea6b5a7498428edb04ce6ba43713cbca53c1.tar.xz wireguard-linux-858cea6b5a7498428edb04ce6ba43713cbca53c1.zip |
mfd: intel-lpss: Switch over to MSI interrupts
Some devices support MSI interrupts. Let's at least try to use them in
platforms that provide MSI capability.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240312165905.1764507-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/mfd/intel-lpss-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/intel-lpss-pci.c b/drivers/mfd/intel-lpss-pci.c index 8c00e0c695c5..c36a101df7be 100644 --- a/drivers/mfd/intel-lpss-pci.c +++ b/drivers/mfd/intel-lpss-pci.c @@ -54,7 +54,7 @@ static int intel_lpss_pci_probe(struct pci_dev *pdev, if (ret) return ret; - ret = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_LEGACY); + ret = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES); if (ret < 0) return ret; |