Commit 8244cd05 authored by Tejun Heo's avatar Tejun Heo Committed by Jeff Garzik

libata-sff: rename ap->ops->drain_fifo() to sff_drain_fifo()

->drain_fifo() is SFF specific.  Rename and relocate it.
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 270390e1
...@@ -53,7 +53,6 @@ const struct ata_port_operations ata_sff_port_ops = { ...@@ -53,7 +53,6 @@ const struct ata_port_operations ata_sff_port_ops = {
.softreset = ata_sff_softreset, .softreset = ata_sff_softreset,
.hardreset = sata_sff_hardreset, .hardreset = sata_sff_hardreset,
.postreset = ata_sff_postreset, .postreset = ata_sff_postreset,
.drain_fifo = ata_sff_drain_fifo,
.error_handler = ata_sff_error_handler, .error_handler = ata_sff_error_handler,
.post_internal_cmd = ata_sff_post_internal_cmd, .post_internal_cmd = ata_sff_post_internal_cmd,
...@@ -64,6 +63,7 @@ const struct ata_port_operations ata_sff_port_ops = { ...@@ -64,6 +63,7 @@ const struct ata_port_operations ata_sff_port_ops = {
.sff_exec_command = ata_sff_exec_command, .sff_exec_command = ata_sff_exec_command,
.sff_data_xfer = ata_sff_data_xfer, .sff_data_xfer = ata_sff_data_xfer,
.sff_irq_clear = ata_sff_irq_clear, .sff_irq_clear = ata_sff_irq_clear,
.sff_drain_fifo = ata_sff_drain_fifo,
.lost_interrupt = ata_sff_lost_interrupt, .lost_interrupt = ata_sff_lost_interrupt,
}; };
...@@ -2398,8 +2398,8 @@ void ata_sff_error_handler(struct ata_port *ap) ...@@ -2398,8 +2398,8 @@ void ata_sff_error_handler(struct ata_port *ap)
* if we touch the data port post reset. Pass qc in case anyone wants * if we touch the data port post reset. Pass qc in case anyone wants
* to do different PIO/DMA recovery or has per command fixups * to do different PIO/DMA recovery or has per command fixups
*/ */
if (ap->ops->drain_fifo) if (ap->ops->sff_drain_fifo)
ap->ops->drain_fifo(qc); ap->ops->sff_drain_fifo(qc);
spin_unlock_irqrestore(ap->lock, flags); spin_unlock_irqrestore(ap->lock, flags);
......
...@@ -175,7 +175,7 @@ static struct ata_port_operations pcmcia_8bit_port_ops = { ...@@ -175,7 +175,7 @@ static struct ata_port_operations pcmcia_8bit_port_ops = {
.sff_data_xfer = ata_data_xfer_8bit, .sff_data_xfer = ata_data_xfer_8bit,
.cable_detect = ata_cable_40wire, .cable_detect = ata_cable_40wire,
.set_mode = pcmcia_set_mode_8bit, .set_mode = pcmcia_set_mode_8bit,
.drain_fifo = pcmcia_8bit_drain_fifo, .sff_drain_fifo = pcmcia_8bit_drain_fifo,
}; };
......
...@@ -856,13 +856,12 @@ struct ata_port_operations { ...@@ -856,13 +856,12 @@ struct ata_port_operations {
void (*sff_irq_on)(struct ata_port *); void (*sff_irq_on)(struct ata_port *);
bool (*sff_irq_check)(struct ata_port *); bool (*sff_irq_check)(struct ata_port *);
void (*sff_irq_clear)(struct ata_port *); void (*sff_irq_clear)(struct ata_port *);
void (*sff_drain_fifo)(struct ata_queued_cmd *qc);
void (*bmdma_setup)(struct ata_queued_cmd *qc); void (*bmdma_setup)(struct ata_queued_cmd *qc);
void (*bmdma_start)(struct ata_queued_cmd *qc); void (*bmdma_start)(struct ata_queued_cmd *qc);
void (*bmdma_stop)(struct ata_queued_cmd *qc); void (*bmdma_stop)(struct ata_queued_cmd *qc);
u8 (*bmdma_status)(struct ata_port *ap); u8 (*bmdma_status)(struct ata_port *ap);
void (*drain_fifo)(struct ata_queued_cmd *qc);
#endif /* CONFIG_ATA_SFF */ #endif /* CONFIG_ATA_SFF */
ssize_t (*em_show)(struct ata_port *ap, char *buf); ssize_t (*em_show)(struct ata_port *ap, char *buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment