dma.h 371 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2015 Roy Spliet <rspliet@ultimaker.com>
  4. */
  5. #ifndef _SUNXI_DMA_H
  6. #define _SUNXI_DMA_H
  7. #if defined(CONFIG_MACH_SUN4I) || defined(CONFIG_MACH_SUN5I) || defined(CONFIG_MACH_SUN7I)
  8. #include <asm/arch/dma_sun4i.h>
  9. #else
  10. #error "DMA definition not available for this architecture"
  11. #endif
  12. #endif /* _SUNXI_DMA_H */