AHCI: Make distinct names for ports in /proc/interrupts
[linux-2.6-block.git] / drivers / ata / ahci.c
index 251e57d38942cdec01790d5fa02cb2c7aed87535..4d1c672d170201ad9180b69e2bb897e25788d3ea 100644 (file)
@@ -1142,9 +1142,11 @@ int ahci_host_activate(struct ata_host *host, int irq, unsigned int n_msis)
                return rc;
 
        for (i = 0; i < host->n_ports; i++) {
+               struct ahci_port_priv *pp = host->ports[i]->private_data;
+
                rc = devm_request_threaded_irq(host->dev,
                        irq + i, ahci_hw_interrupt, ahci_thread_fn, IRQF_SHARED,
-                       dev_driver_string(host->dev), host->ports[i]);
+                       pp->irq_desc, host->ports[i]);
                if (rc)
                        goto out_free_irqs;
        }