aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/mach
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/include/asm/mach')
-rw-r--r--arch/arm/include/asm/mach/dma.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/arm/include/asm/mach/dma.h b/arch/arm/include/asm/mach/dma.h
index 281ae7e40a90..38a3693f1258 100644
--- a/arch/arm/include/asm/mach/dma.h
+++ b/arch/arm/include/asm/mach/dma.h
@@ -48,10 +48,12 @@ struct dma_struct {
48 struct dma_ops *d_ops; 48 struct dma_ops *d_ops;
49}; 49};
50 50
51/* Prototype: void arch_dma_init(dma) 51/*
52 * Purpose : Initialise architecture specific DMA 52 * isa_dma_add - add an ISA-style DMA channel
53 * Params : dma - pointer to array of DMA structures
54 */ 53 */
55extern void arch_dma_init(dma_t *dma); 54extern int isa_dma_add(unsigned int, dma_t *dma);
56 55
57extern void isa_init_dma(dma_t *dma); 56/*
57 * Add the ISA DMA controller. Always takes channels 0-7.
58 */
59extern void isa_init_dma(void);