swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 31880c37c11e28cb81c70757e38392b42e695dc6 authored by Linus Torvalds on 08 April 2013, 03:49:54 UTC
Linux 3.9-rc6
Tip revision: 31880c3
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