Merge git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-linus
[linux-2.6-block.git] / arch / arm / mach-shark / dma.c
CommitLineData
1da177e4
LT
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
1da177e4
LT
11#include <linux/init.h>
12
13#include <asm/dma.h>
14#include <asm/mach/dma.h>
15
2f757f2a 16static int __init shark_dma_init(void)
1da177e4
LT
17{
18#ifdef CONFIG_ISA_DMA
2f757f2a 19 isa_init_dma();
1da177e4 20#endif
2f757f2a 21 return 0;
1da177e4 22}
2f757f2a 23core_initcall(shark_dma_init);