summaryrefslogtreecommitdiffstats
path: root/drivers/ide/cs5520.c
diff options
context:
space:
mode:
authorDavid S. Miller2009-06-24 11:36:17 +0200
committerDavid S. Miller2009-06-24 11:36:17 +0200
commitd7e2f36d9a92284754ed5254562766cb3d61c7ca (patch)
tree063f4edefd4ffeb216ed57761ca3ab6441716ae8 /drivers/ide/cs5520.c
parentide: improve handling of Power Management requests (diff)
downloadkernel-qcow2-linux-d7e2f36d9a92284754ed5254562766cb3d61c7ca.tar.gz
kernel-qcow2-linux-d7e2f36d9a92284754ed5254562766cb3d61c7ca.tar.xz
kernel-qcow2-linux-d7e2f36d9a92284754ed5254562766cb3d61c7ca.zip
ide cs5520: Initialize second port's interrupt number.
In 86ccf37c6acd74cf7e4b7751ee045de19943c5a0 the driver was modified to deal with the removal of the pciirq argument to ide_pci_setup_ports(). But in the conversion only the first port's IRQ gets setup. Inspired by a patch by Bartlomiej Zolnierkiewicz., and with help from Alan Cox. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide/cs5520.c')
-rw-r--r--drivers/ide/cs5520.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ide/cs5520.c b/drivers/ide/cs5520.c
index bd066bb9d611..09f98ed0731f 100644
--- a/drivers/ide/cs5520.c
+++ b/drivers/ide/cs5520.c
@@ -135,6 +135,7 @@ static int __devinit cs5520_init_one(struct pci_dev *dev, const struct pci_devic
ide_pci_setup_ports(dev, d, &hw[0], &hws[0]);
hw[0].irq = 14;
+ hw[1].irq = 15;
return ide_host_add(d, hws, 2, NULL);
}