summaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorAlbert Lee2006-02-08 09:48:49 +0100
committerJeff Garzik2006-02-09 10:26:12 +0100
commit20ea079e5883ab2b82fa5e576957f52e4e5c252c (patch)
treeb29d55ec3c4e4df846914365ad0c5a7eecbb2408 /drivers/scsi
parent[PATCH] libata-dev: Fix array index value in ata_rwcmd_protocol() (diff)
downloadkernel-qcow2-linux-20ea079e5883ab2b82fa5e576957f52e4e5c252c.tar.gz
kernel-qcow2-linux-20ea079e5883ab2b82fa5e576957f52e4e5c252c.tar.xz
kernel-qcow2-linux-20ea079e5883ab2b82fa5e576957f52e4e5c252c.zip
[PATCH] libata-dev: Use new ata_queue_pio_task() for PIO polling task
- Use new ata_queue_pio_task() for PIO polling task. - Remove the unused ata_queue_packet_task() function. (irq-pio had merged the 2 queues into one.) Signed-off-by: Albert Lee <albertcc@tw.ibm.com> === Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/libata-core.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c
index dab13ed6fa78..bbce1622eb76 100644
--- a/drivers/scsi/libata-core.c
+++ b/drivers/scsi/libata-core.c
@@ -1073,12 +1073,6 @@ static unsigned int ata_pio_modes(const struct ata_device *adev)
}
static inline void
-ata_queue_packet_task(struct ata_port *ap)
-{
- queue_work(ata_wq, &ap->packet_task);
-}
-
-static inline void
ata_queue_pio_task(struct ata_port *ap)
{
queue_work(ata_wq, &ap->pio_task);
@@ -3971,7 +3965,7 @@ unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
ap->hsm_task_state = HSM_ST_LAST;
if (qc->tf.flags & ATA_TFLAG_POLLING)
- queue_work(ata_wq, &ap->pio_task);
+ ata_queue_pio_task(ap);
break;
@@ -4024,7 +4018,7 @@ unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
/* send cdb by polling if no cdb interrupt */
if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
(qc->tf.flags & ATA_TFLAG_POLLING))
- ata_queue_packet_task(ap);
+ ata_queue_pio_task(ap);
break;
case ATA_PROT_ATAPI_DMA:
@@ -4036,7 +4030,7 @@ unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
/* send cdb by polling if no cdb interrupt */
if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
- ata_queue_packet_task(ap);
+ ata_queue_pio_task(ap);
break;
default: