diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:46 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:46 -0400 |
commit | 653bcf5292a9ac4ffc07315198f0ef995e0646a8 (patch) | |
tree | b13dcb203ecce6bd87297d9652be0a08d3528080 /drivers/ide/pci/hpt366.c | |
parent | f5e0b5ecb3afc8050259003067b6a1aef3635f12 (diff) |
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/hpt366.c')
-rw-r--r-- | drivers/ide/pci/hpt366.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/pci/hpt366.c b/drivers/ide/pci/hpt366.c index 91f51e7b376f..9cf171cb9376 100644 --- a/drivers/ide/pci/hpt366.c +++ b/drivers/ide/pci/hpt366.c | |||
@@ -835,7 +835,7 @@ static int hpt370_dma_end(ide_drive_t *drive) | |||
835 | if (dma_stat & 0x01) | 835 | if (dma_stat & 0x01) |
836 | hpt370_irq_timeout(drive); | 836 | hpt370_irq_timeout(drive); |
837 | } | 837 | } |
838 | return __ide_dma_end(drive); | 838 | return ide_dma_end(drive); |
839 | } | 839 | } |
840 | 840 | ||
841 | static void hpt370_dma_timeout(ide_drive_t *drive) | 841 | static void hpt370_dma_timeout(ide_drive_t *drive) |
@@ -877,7 +877,7 @@ static int hpt374_dma_end(ide_drive_t *drive) | |||
877 | pci_read_config_byte(dev, mcr_addr, &mcr); | 877 | pci_read_config_byte(dev, mcr_addr, &mcr); |
878 | if (bwsr & mask) | 878 | if (bwsr & mask) |
879 | pci_write_config_byte(dev, mcr_addr, mcr | 0x30); | 879 | pci_write_config_byte(dev, mcr_addr, mcr | 0x30); |
880 | return __ide_dma_end(drive); | 880 | return ide_dma_end(drive); |
881 | } | 881 | } |
882 | 882 | ||
883 | /** | 883 | /** |
@@ -1453,7 +1453,7 @@ static const struct ide_dma_ops hpt36x_dma_ops = { | |||
1453 | .dma_setup = ide_dma_setup, | 1453 | .dma_setup = ide_dma_setup, |
1454 | .dma_exec_cmd = ide_dma_exec_cmd, | 1454 | .dma_exec_cmd = ide_dma_exec_cmd, |
1455 | .dma_start = ide_dma_start, | 1455 | .dma_start = ide_dma_start, |
1456 | .dma_end = __ide_dma_end, | 1456 | .dma_end = ide_dma_end, |
1457 | .dma_test_irq = ide_dma_test_irq, | 1457 | .dma_test_irq = ide_dma_test_irq, |
1458 | .dma_lost_irq = hpt366_dma_lost_irq, | 1458 | .dma_lost_irq = hpt366_dma_lost_irq, |
1459 | .dma_timeout = ide_dma_timeout, | 1459 | .dma_timeout = ide_dma_timeout, |