diff options
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index c72fa468a697..6e5f69a3a0c2 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1052,7 +1052,7 @@ static int ahci_do_softreset(struct ata_port *ap, unsigned int *class, | |||
1052 | 1052 | ||
1053 | DPRINTK("ENTER\n"); | 1053 | DPRINTK("ENTER\n"); |
1054 | 1054 | ||
1055 | if (ata_port_offline(ap)) { | 1055 | if (ata_link_offline(&ap->link)) { |
1056 | DPRINTK("PHY reports no device\n"); | 1056 | DPRINTK("PHY reports no device\n"); |
1057 | *class = ATA_DEV_NONE; | 1057 | *class = ATA_DEV_NONE; |
1058 | return 0; | 1058 | return 0; |
@@ -1140,7 +1140,7 @@ static int ahci_hardreset(struct ata_port *ap, unsigned int *class, | |||
1140 | 1140 | ||
1141 | ahci_start_engine(ap); | 1141 | ahci_start_engine(ap); |
1142 | 1142 | ||
1143 | if (rc == 0 && ata_port_online(ap)) | 1143 | if (rc == 0 && ata_link_online(&ap->link)) |
1144 | *class = ahci_dev_classify(ap); | 1144 | *class = ahci_dev_classify(ap); |
1145 | if (*class == ATA_DEV_UNKNOWN) | 1145 | if (*class == ATA_DEV_UNKNOWN) |
1146 | *class = ATA_DEV_NONE; | 1146 | *class = ATA_DEV_NONE; |