RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-shark / dma.c
blob10b5b8b3272a81b6bfd92068c625b72ed5174462
1 /*
2 * linux/arch/arm/mach-shark/dma.c
4 * by Alexander Schulz
6 * derived from:
7 * arch/arm/kernel/dma-ebsa285.c
8 * Copyright (C) 1998 Phil Blundell
9 */
11 #include <linux/init.h>
13 #include <asm/dma.h>
14 #include <asm/mach/dma.h>
16 static int __init shark_dma_init(void)
18 #ifdef CONFIG_ISA_DMA
19 isa_init_dma();
20 #endif
21 return 0;
23 core_initcall(shark_dma_init);