aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/libahci.c
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2015-10-30 17:09:30 -0400
committerTejun Heo <tj@kernel.org>2015-10-31 10:04:34 +0900
commit899a63c3ebf3fad8723a432c1bba875ec3ef1948 (patch)
treee3eb8c7b56b409eb94896d5f96d65d36c40341a4 /drivers/ata/libahci.c
parentdevicetree: bindings: Fixed a few typos (diff)
downloadlinux-dev-899a63c3ebf3fad8723a432c1bba875ec3ef1948.tar.xz
linux-dev-899a63c3ebf3fad8723a432c1bba875ec3ef1948.zip
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: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/libahci.c')
-rw-r--r--drivers/ata/libahci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
index 2fa551a5146e..67f97e3e471a 100644
--- a/drivers/ata/libahci.c
+++ b/drivers/ata/libahci.c
@@ -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,
ahci_multi_irqs_intr,
- ahci_port_thread_fn, IRQF_SHARED,
+ ahci_port_thread_fn, 0,
pp->irq_desc, host->ports[i]);
if (rc)
goto out_free_irqs;