Commit 899a63c3 authored by Dan Williams's avatar Dan Williams Committed by Tejun Heo

ahci: ahci_host_activate: kill IRQF_SHARED

MSI messages are per-device, so there will never be another "shared"
device in the interrupt chain.
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent d72c0f43
...@@ -2493,7 +2493,7 @@ static int ahci_host_activate_multi_irqs(struct ata_host *host, int irq, ...@@ -2493,7 +2493,7 @@ static int ahci_host_activate_multi_irqs(struct ata_host *host, int irq,
rc = devm_request_threaded_irq(host->dev, irq + i, rc = devm_request_threaded_irq(host->dev, irq + i,
ahci_multi_irqs_intr, ahci_multi_irqs_intr,
ahci_port_thread_fn, IRQF_SHARED, ahci_port_thread_fn, 0,
pp->irq_desc, host->ports[i]); pp->irq_desc, host->ports[i]);
if (rc) if (rc)
goto out_free_irqs; goto out_free_irqs;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment