Browse Source

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>
Dan Williams 10 years ago
parent
commit
899a63c3eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/ata/libahci.c

+ 1 - 1
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;