dma-mapping.h 404 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_M32R_DMA_MAPPING_H
  3. #define _ASM_M32R_DMA_MAPPING_H
  4. #include <linux/kernel.h>
  5. #include <linux/types.h>
  6. #include <linux/mm.h>
  7. #include <linux/scatterlist.h>
  8. #include <linux/dma-debug.h>
  9. #include <linux/io.h>
  10. static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
  11. {
  12. return &dma_noop_ops;
  13. }
  14. #endif /* _ASM_M32R_DMA_MAPPING_H */