mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
6ab3d5624e
Signed-off-by: Jörn Engel <joern@wohnheim.fh-wedel.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
22 lines
327 B
C
22 lines
327 B
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>
|
|
|
|
void __init arch_dma_init(dma_t *dma)
|
|
{
|
|
#ifdef CONFIG_ISA_DMA
|
|
isa_init_dma(dma);
|
|
#endif
|
|
}
|