From: Alan Cox Date: Thu, 26 Jul 2007 17:38:06 +0000 (+0100) Subject: libata pata_via: ACPI checks for 80wire cable X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=7d73a363dea186a864f6295bbe842da8044d42cd;p=deliverable%2Flinux.git libata pata_via: ACPI checks for 80wire cable Testing this on the VIA boards fixes several problems with otherwise undetectable SATA bridge chips Signed-off-by: Alan Cox Signed-off-by: Jeff Garzik --- diff --git a/drivers/ata/pata_via.c b/drivers/ata/pata_via.c index 4ddcae8b8c96..f11b87e18aae 100644 --- a/drivers/ata/pata_via.c +++ b/drivers/ata/pata_via.c @@ -184,6 +184,9 @@ static int via_cable_detect(struct ata_port *ap) { two drives */ if (ata66 & (0x10100000 >> (16 * ap->port_no))) return ATA_CBL_PATA80; + /* Check with ACPI so we can spot BIOS reported SATA bridges */ + if (ata_acpi_cbl_80wire(ap)) + return ATA_CBL_PATA80; return ATA_CBL_PATA40; }