dma-contiguous.h 226 B

123456789101112131415
  1. #ifndef ASMARM_DMA_CONTIGUOUS_H
  2. #define ASMARM_DMA_CONTIGUOUS_H
  3. #ifdef __KERNEL__
  4. #ifdef CONFIG_DMA_CMA
  5. #include <linux/types.h>
  6. void dma_contiguous_early_fixup(phys_addr_t base, unsigned long size);
  7. #endif
  8. #endif
  9. #endif