mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
2f757f2ab7
Rather than having the central DMA multiplexer call the architecture specific DMA initialization function, have each architecture DMA initialization function use core_initcall(), and register each DMA channel separately with the multiplexer. This removes the array of dma structures in the central multiplexer, replacing it with an array of pointers instead; this is more flexible since it allows the drivers to wrap the DMA structure (eventually allowing us to transition non-ISA DMA drivers away.) Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
24 lines
367 B
C
24 lines
367 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>
|
|
|
|
static int __init shark_dma_init(void)
|
|
{
|
|
#ifdef CONFIG_ISA_DMA
|
|
isa_init_dma();
|
|
#endif
|
|
return 0;
|
|
}
|
|
core_initcall(shark_dma_init);
|