diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-09-26 12:55:37 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-26 13:34:27 -0400 |
commit | daac0acd597618b99bba5f8fff31f21e4f283154 (patch) | |
tree | 260cd8e9024655ca6b017318fc4ae8c918cba52c /drivers/ata | |
parent | c961922b73dab429a759f560952fd4c3f60bd6b3 (diff) |
[PATCH] libata-sff: use our IRQ defines
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-sff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 688bb55e197a..9222b6bb010a 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c | |||
@@ -881,7 +881,7 @@ static struct ata_probe_ent *ata_pci_init_legacy_port(struct pci_dev *pdev, | |||
881 | probe_ent->private_data = port[0]->private_data; | 881 | probe_ent->private_data = port[0]->private_data; |
882 | 882 | ||
883 | if (port_mask & ATA_PORT_PRIMARY) { | 883 | if (port_mask & ATA_PORT_PRIMARY) { |
884 | probe_ent->irq = 14; | 884 | probe_ent->irq = ATA_PRIMARY_IRQ; |
885 | probe_ent->port[0].cmd_addr = ATA_PRIMARY_CMD; | 885 | probe_ent->port[0].cmd_addr = ATA_PRIMARY_CMD; |
886 | probe_ent->port[0].altstatus_addr = | 886 | probe_ent->port[0].altstatus_addr = |
887 | probe_ent->port[0].ctl_addr = ATA_PRIMARY_CTL; | 887 | probe_ent->port[0].ctl_addr = ATA_PRIMARY_CTL; |
@@ -896,7 +896,7 @@ static struct ata_probe_ent *ata_pci_init_legacy_port(struct pci_dev *pdev, | |||
896 | 896 | ||
897 | if (port_mask & ATA_PORT_SECONDARY) { | 897 | if (port_mask & ATA_PORT_SECONDARY) { |
898 | if (probe_ent->irq) | 898 | if (probe_ent->irq) |
899 | probe_ent->irq2 = 15; | 899 | probe_ent->irq2 = ATA_SECONDARY_IRQ; |
900 | else | 900 | else |
901 | probe_ent->irq = 15; | 901 | probe_ent->irq = 15; |
902 | probe_ent->port[1].cmd_addr = ATA_SECONDARY_CMD; | 902 | probe_ent->port[1].cmd_addr = ATA_SECONDARY_CMD; |