diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2007-10-15 19:25:29 +0100 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-17 20:49:02 -0400 |
commit | 01839f6ddef011878e905d72786d95cee21ca039 (patch) | |
tree | c381091011421a7232d081111a20bb13d78a4c0f /drivers | |
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')
-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 026439e05af..1232dcb6008 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) { struct ata_ioports *ioaddr = &ap->ioaddr; - tf->command = ata_check_status(ap); + tf->command = ata_chk_status(ap); tf->feature = ioread8(ioaddr->error_addr); tf->nsect = ioread8(ioaddr->nsect_addr); tf->lbal = ioread8(ioaddr->lbal_addr); |