diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2013-06-22 17:39:39 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2013-06-24 19:29:31 -0400 |
commit | 9bbb1b0e2a83c5b3922a050acc932ee3004e85b6 (patch) | |
tree | f57a766e83d9745f7e2e8176804af6c8e6e42d31 /drivers/ata/ahci.c | |
parent | d0887c43f51c308b01605346e55d906ba858a6f9 (diff) |
AHCI: use ATA_BUSY
ahci_hardreset() and ahci_p5wdh_hardreset() use bare numbers for the
BSY bit of the ATA status register, despite it's #define'd in
<linux/ata.h>.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index da45325874d4..8db82d389592 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -583,7 +583,7 @@ static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class, | |||
583 | 583 | ||
584 | /* clear D2H reception area to properly wait for D2H FIS */ | 584 | /* clear D2H reception area to properly wait for D2H FIS */ |
585 | ata_tf_init(link->device, &tf); | 585 | ata_tf_init(link->device, &tf); |
586 | tf.command = 0x80; | 586 | tf.command = ATA_BUSY; |
587 | ata_tf_to_fis(&tf, 0, 0, d2h_fis); | 587 | ata_tf_to_fis(&tf, 0, 0, d2h_fis); |
588 | 588 | ||
589 | rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context), | 589 | rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context), |