summaryrefslogtreecommitdiffstats
path: root/drivers/ata/ahci.c
diff options
context:
space:
mode:
authorSergei Shtylyov2013-06-22 23:39:39 +0200
committerTejun Heo2013-06-25 01:29:31 +0200
commit9bbb1b0e2a83c5b3922a050acc932ee3004e85b6 (patch)
treef57a766e83d9745f7e2e8176804af6c8e6e42d31 /drivers/ata/ahci.c
parentlibata-zpodd: must use ata_tf_init() (diff)
downloadkernel-qcow2-linux-9bbb1b0e2a83c5b3922a050acc932ee3004e85b6.tar.gz
kernel-qcow2-linux-9bbb1b0e2a83c5b3922a050acc932ee3004e85b6.tar.xz
kernel-qcow2-linux-9bbb1b0e2a83c5b3922a050acc932ee3004e85b6.zip
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.c2
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,
/* clear D2H reception area to properly wait for D2H FIS */
ata_tf_init(link->device, &tf);
- tf.command = 0x80;
+ tf.command = ATA_BUSY;
ata_tf_to_fis(&tf, 0, 0, d2h_fis);
rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),