dma.c 353 B

12345678910111213141516171819202122
  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. #include <linux/config.h>
  11. #include <linux/init.h>
  12. #include <asm/dma.h>
  13. #include <asm/mach/dma.h>
  14. void __init arch_dma_init(dma_t *dma)
  15. {
  16. #ifdef CONFIG_ISA_DMA
  17. isa_init_dma(dma);
  18. #endif
  19. }