diff options
Diffstat (limited to 'arch/arm/mach-shark/dma.c')
-rw-r--r-- | arch/arm/mach-shark/dma.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/mach-shark/dma.c b/arch/arm/mach-shark/dma.c new file mode 100644 index 000000000000..835989a02918 --- /dev/null +++ b/arch/arm/mach-shark/dma.c | |||
@@ -0,0 +1,22 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-shark/dma.c | ||
3 | * | ||
4 | * by Alexander Schulz | ||
5 | * | ||
6 | * derived from: | ||
7 | * arch/arm/kernel/dma-ebsa285.c | ||
8 | * Copyright (C) 1998 Phil Blundell | ||
9 | */ | ||
10 | |||
11 | #include <linux/config.h> | ||
12 | #include <linux/init.h> | ||
13 | |||
14 | #include <asm/dma.h> | ||
15 | #include <asm/mach/dma.h> | ||
16 | |||
17 | void __init arch_dma_init(dma_t *dma) | ||
18 | { | ||
19 | #ifdef CONFIG_ISA_DMA | ||
20 | isa_init_dma(dma); | ||
21 | #endif | ||
22 | } | ||