diff options
-rw-r--r-- | drivers/ata/pata_amd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ata/pata_amd.c b/drivers/ata/pata_amd.c index 46f829c838b3..c95922f8cc5e 100644 --- a/drivers/ata/pata_amd.c +++ b/drivers/ata/pata_amd.c | |||
@@ -270,6 +270,9 @@ static int nv_cable_detect(struct ata_port *ap) | |||
270 | pci_read_config_word(pdev, 0x62 - 2 * ap->port_no, &udma); | 270 | pci_read_config_word(pdev, 0x62 - 2 * ap->port_no, &udma); |
271 | if ((udma & 0xC4) == 0xC4 || (udma & 0xC400) == 0xC400) | 271 | if ((udma & 0xC4) == 0xC4 || (udma & 0xC400) == 0xC400) |
272 | cbl = ATA_CBL_PATA80; | 272 | cbl = ATA_CBL_PATA80; |
273 | /* And a triple check across suspend/resume with ACPI around */ | ||
274 | if (ata_acpi_cbl_80wire(ap)) | ||
275 | cbl = ATA_CBL_PATA80; | ||
273 | return cbl; | 276 | return cbl; |
274 | } | 277 | } |
275 | 278 | ||