aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_pcmcia.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2008-03-24 23:22:47 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-04-17 15:44:16 -0400
commit358f9a77a668660729e705fde9c3cf69f013aa98 (patch)
treea249660fdd9f252925eff9eaac3ed7836c839f91 /drivers/ata/pata_pcmcia.c
parentc1bc899f5805771926c9198e2ab4d77122c356a1 (diff)
libata: implement and use ata_noop_irq_clear()
->irq_clear() is used to clear IRQ bit of a SFF controller and isn't useful for drivers which don't use libata SFF HSM implementation. However, it's a required callback and many drivers implement their own noop version as placeholder. This patch implements ata_noop_irq_clear and use it to replace those custom placeholders. Also, SFF drivers which don't support BMDMA don't need to use ata_bmdma_irq_clear(). It becomes noop if BMDMA address isn't initialized. Convert them to use ata_noop_irq_clear(). Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/ata/pata_pcmcia.c')
-rw-r--r--drivers/ata/pata_pcmcia.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pata_pcmcia.c b/drivers/ata/pata_pcmcia.c
index 3e7f6a9da28b..9881a9e004a4 100644
--- a/drivers/ata/pata_pcmcia.c
+++ b/drivers/ata/pata_pcmcia.c
@@ -164,7 +164,7 @@ static struct ata_port_operations pcmcia_port_ops = {
164 164
165 .data_xfer = ata_data_xfer_noirq, 165 .data_xfer = ata_data_xfer_noirq,
166 166
167 .irq_clear = ata_bmdma_irq_clear, 167 .irq_clear = ata_noop_irq_clear,
168 .irq_on = ata_irq_on, 168 .irq_on = ata_irq_on,
169 169
170 .port_start = ata_sff_port_start, 170 .port_start = ata_sff_port_start,
@@ -189,7 +189,7 @@ static struct ata_port_operations pcmcia_8bit_port_ops = {
189 189
190 .data_xfer = ata_data_xfer_8bit, 190 .data_xfer = ata_data_xfer_8bit,
191 191
192 .irq_clear = ata_bmdma_irq_clear, 192 .irq_clear = ata_noop_irq_clear,
193 .irq_on = ata_irq_on, 193 .irq_on = ata_irq_on,
194 194
195 .port_start = ata_sff_port_start, 195 .port_start = ata_sff_port_start,