diff options
author | Tejun Heo <htejun@gmail.com> | 2007-12-04 20:36:13 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-01-23 05:24:13 -0500 |
commit | 1973a023a616b40ba33fd0d38b1055c62c88e73d (patch) | |
tree | 995f12e364061f0d690d3d4b57ce33b21157786f | |
parent | 40f46f17819c2d199f99addc3278ff2eb11f3cd5 (diff) |
libata: convert NCQ test in ata_qc_issue() to ata_is_ncq()
I missed one while converting to ata_is_*() protocol test helpers.
Convert it. Pointed out by Jeff Garzik.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r-- | drivers/ata/libata-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index f01c1734b1d0..2b57547bd740 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -5990,7 +5990,7 @@ void ata_qc_issue(struct ata_queued_cmd *qc) | |||
5990 | */ | 5990 | */ |
5991 | WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag)); | 5991 | WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag)); |
5992 | 5992 | ||
5993 | if (prot == ATA_PROT_NCQ) { | 5993 | if (ata_is_ncq(prot)) { |
5994 | WARN_ON(link->sactive & (1 << qc->tag)); | 5994 | WARN_ON(link->sactive & (1 << qc->tag)); |
5995 | 5995 | ||
5996 | if (!link->sactive) | 5996 | if (!link->sactive) |