diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2007-10-15 14:25:29 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-17 20:49:02 -0400 |
commit | 01839f6ddef011878e905d72786d95cee21ca039 (patch) | |
tree | c381091011421a7232d081111a20bb13d78a4c0f /drivers/ata | |
parent | faf0b2e5afe7dae072d2715763c7f992b612b628 (diff) |
libata-sff: Correct use of check_status()
ata_check_status() does an SFF compliant check
ata_chk_status() does a generic call to ap->ops->check_status (usually
ata_check_status)
libata-sff uses the wrong one. Hardly suprising given the naming here,
which ought to get fixed to ata_sff_check_status() perhaps ?
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-sff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 026439e05afe..1232dcb6008d 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c | |||
@@ -156,7 +156,7 @@ void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf) | |||
156 | { | 156 | { |
157 | struct ata_ioports *ioaddr = &ap->ioaddr; | 157 | struct ata_ioports *ioaddr = &ap->ioaddr; |
158 | 158 | ||
159 | tf->command = ata_check_status(ap); | 159 | tf->command = ata_chk_status(ap); |
160 | tf->feature = ioread8(ioaddr->error_addr); | 160 | tf->feature = ioread8(ioaddr->error_addr); |
161 | tf->nsect = ioread8(ioaddr->nsect_addr); | 161 | tf->nsect = ioread8(ioaddr->nsect_addr); |
162 | tf->lbal = ioread8(ioaddr->lbal_addr); | 162 | tf->lbal = ioread8(ioaddr->lbal_addr); |