swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 61c4f2c81c61f73549928dfd9f3e8f26aa36a8cf authored by Linus Torvalds on 19 May 2011, 04:06:34 UTC
Linux 2.6.39
Tip revision: 61c4f2c
dma.c
/*
 *  linux/arch/arm/mach-shark/dma.c
 *
 *  by Alexander Schulz
 *
 *  derived from:
 *  arch/arm/kernel/dma-ebsa285.c
 *  Copyright (C) 1998 Phil Blundell
 */

#include <linux/init.h>

#include <asm/dma.h>
#include <asm/mach/dma.h>

static int __init shark_dma_init(void)
{
#ifdef CONFIG_ISA_DMA
	isa_init_dma();
#endif
	return 0;
}
core_initcall(shark_dma_init);
back to top