diff options
author | Dan Williams <dan.j.williams@intel.com> | 2015-10-30 17:09:30 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2015-10-31 10:04:34 +0900 |
commit | 899a63c3ebf3fad8723a432c1bba875ec3ef1948 (patch) | |
tree | e3eb8c7b56b409eb94896d5f96d65d36c40341a4 /drivers/ata | |
parent | d72c0f430b19a7ee80d904a59c6c9a1c40e016cc (diff) | |
download | linux-899a63c3ebf3fad8723a432c1bba875ec3ef1948.tar.bz2 |
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')
-rw-r--r-- | drivers/ata/libahci.c | 2 |
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; |