dma-contiguous.h 262 B

12345678910111213141516
  1. #ifndef ASMARM_DMA_CONTIGUOUS_H
  2. #define ASMARM_DMA_CONTIGUOUS_H
  3. #ifdef __KERNEL__
  4. #ifdef CONFIG_CMA
  5. #include <linux/types.h>
  6. #include <asm-generic/dma-contiguous.h>
  7. void dma_contiguous_early_fixup(phys_addr_t base, unsigned long size);
  8. #endif
  9. #endif
  10. #endif