aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-04-26 16:25:21 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-04-26 16:25:21 -0400
commitb8e73fba60414e161d8fd2429b6fb268e34502e2 (patch)
treef426376c826ff1a8979a36eb6b5bde1addb7d719 /drivers
parent23658f8af3dbba53ae9796e4c37c2fdd0272662e (diff)
ide: export ide_allocate_dma_engine()
Export ide_allocate_dma_engine() and use it in trm290 host driver. Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ide/ide-dma.c3
-rw-r--r--drivers/ide/pci/trm290.c9
2 files changed, 4 insertions, 8 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c
index 1933254660a1..ca7f974a71f5 100644
--- a/drivers/ide/ide-dma.c
+++ b/drivers/ide/ide-dma.c
@@ -821,7 +821,7 @@ void ide_release_dma_engine(ide_hwif_t *hwif)
821 } 821 }
822} 822}
823 823
824static int ide_allocate_dma_engine(ide_hwif_t *hwif) 824int ide_allocate_dma_engine(ide_hwif_t *hwif)
825{ 825{
826 struct pci_dev *pdev = to_pci_dev(hwif->dev); 826 struct pci_dev *pdev = to_pci_dev(hwif->dev);
827 827
@@ -837,6 +837,7 @@ static int ide_allocate_dma_engine(ide_hwif_t *hwif)
837 837
838 return 1; 838 return 1;
839} 839}
840EXPORT_SYMBOL_GPL(ide_allocate_dma_engine);
840 841
841void ide_setup_dma(ide_hwif_t *hwif, unsigned long base) 842void ide_setup_dma(ide_hwif_t *hwif, unsigned long base)
842{ 843{
diff --git a/drivers/ide/pci/trm290.c b/drivers/ide/pci/trm290.c
index 0677ab016ef8..7e354d33323b 100644
--- a/drivers/ide/pci/trm290.c
+++ b/drivers/ide/pci/trm290.c
@@ -254,16 +254,11 @@ static void __devinit init_hwif_trm290(ide_hwif_t *hwif)
254 hwif->config_data = cfg_base; 254 hwif->config_data = cfg_base;
255 hwif->dma_base = (cfg_base + 4) ^ (hwif->channel ? 0x80 : 0); 255 hwif->dma_base = (cfg_base + 4) ^ (hwif->channel ? 0x80 : 0);
256 256
257 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx", 257 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
258 hwif->name, hwif->dma_base, hwif->dma_base + 3); 258 hwif->name, hwif->dma_base, hwif->dma_base + 3);
259 259
260 hwif->dmatable_cpu = pci_alloc_consistent(dev, PRD_ENTRIES * PRD_BYTES, 260 if (ide_allocate_dma_engine(hwif))
261 &hwif->dmatable_dma);
262 if (!hwif->dmatable_cpu) {
263 printk(KERN_CONT " -- Error, unable to allocate DMA table.\n");
264 return; 261 return;
265 }
266 printk(KERN_CONT "\n");
267 262
268 local_irq_save(flags); 263 local_irq_save(flags);
269 /* put config reg into first byte of hwif->select_data */ 264 /* put config reg into first byte of hwif->select_data */