summaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci/pdc202xx_old.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz2008-10-13 21:39:46 +0200
committerBartlomiej Zolnierkiewicz2008-10-13 21:39:46 +0200
commit653bcf5292a9ac4ffc07315198f0ef995e0646a8 (patch)
treeb13dcb203ecce6bd87297d9652be0a08d3528080 /drivers/ide/pci/pdc202xx_old.c
parentpmac: remove needless pmac_ide_destroy_dmatable() wrapper (diff)
downloadkernel-qcow2-linux-653bcf5292a9ac4ffc07315198f0ef995e0646a8.tar.gz
kernel-qcow2-linux-653bcf5292a9ac4ffc07315198f0ef995e0646a8.tar.xz
kernel-qcow2-linux-653bcf5292a9ac4ffc07315198f0ef995e0646a8.zip
ide: __ide_dma_end() -> ide_dma_end()
While at it: - use EXPORT_SYMBOL_GPL() to match the rest of SFF DMA functions Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/pdc202xx_old.c')
-rw-r--r--drivers/ide/pci/pdc202xx_old.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/pci/pdc202xx_old.c b/drivers/ide/pci/pdc202xx_old.c
index 649b807c6aa6..799557c25eef 100644
--- a/drivers/ide/pci/pdc202xx_old.c
+++ b/drivers/ide/pci/pdc202xx_old.c
@@ -200,7 +200,7 @@ static int pdc202xx_dma_end(ide_drive_t *drive)
}
if (drive->current_speed > XFER_UDMA_2)
pdc_old_disable_66MHz_clock(drive->hwif);
- return __ide_dma_end(drive);
+ return ide_dma_end(drive);
}
static int pdc202xx_dma_test_irq(ide_drive_t *drive)
@@ -333,7 +333,7 @@ static const struct ide_dma_ops pdc20246_dma_ops = {
.dma_setup = ide_dma_setup,
.dma_exec_cmd = ide_dma_exec_cmd,
.dma_start = ide_dma_start,
- .dma_end = __ide_dma_end,
+ .dma_end = ide_dma_end,
.dma_test_irq = pdc202xx_dma_test_irq,
.dma_lost_irq = pdc202xx_dma_lost_irq,
.dma_timeout = pdc202xx_dma_timeout,