dma-contiguous.h 265 B

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