aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-11-19 12:38:11 -0500
committerJeff Garzik <jgarzik@redhat.com>2009-12-03 02:46:35 -0500
commitf3b1cf40d4012351d793793b2965aca57cc9fdd5 (patch)
tree19611838f13ff13218d6cd8db9a1fc08658d0cc5 /drivers/ata
parent6a74463798bde03f849d8d82d97e4f8e4cf160f3 (diff)
pata_hpt3x2n: fix cable detection
The detection was reversed between primary and secondary ports. Fix it to match hpt366 and the vendor driver. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/pata_hpt3x2n.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_hpt3x2n.c b/drivers/ata/pata_hpt3x2n.c
index 3d59fe0a408d..2ab9fd6c597f 100644
--- a/drivers/ata/pata_hpt3x2n.c
+++ b/drivers/ata/pata_hpt3x2n.c
@@ -133,7 +133,7 @@ static int hpt3x2n_cable_detect(struct ata_port *ap)
133 /* Restore state */ 133 /* Restore state */
134 pci_write_config_byte(pdev, 0x5B, scr2); 134 pci_write_config_byte(pdev, 0x5B, scr2);
135 135
136 if (ata66 & (1 << ap->port_no)) 136 if (ata66 & (2 >> ap->port_no))
137 return ATA_CBL_PATA40; 137 return ATA_CBL_PATA40;
138 else 138 else
139 return ATA_CBL_PATA80; 139 return ATA_CBL_PATA80;