dma.c 367 B

123456789101112131415161718192021222324
  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/init.h>
  11. #include <asm/dma.h>
  12. #include <asm/mach/dma.h>
  13. static int __init shark_dma_init(void)
  14. {
  15. #ifdef CONFIG_ISA_DMA
  16. isa_init_dma();
  17. #endif
  18. return 0;
  19. }
  20. core_initcall(shark_dma_init);