dma-mapping.h 307 B

1234567891011121314
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2005-2017 Andes Technology Corporation
  3. #ifndef ASMNDS32_DMA_MAPPING_H
  4. #define ASMNDS32_DMA_MAPPING_H
  5. extern struct dma_map_ops nds32_dma_ops;
  6. static inline struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
  7. {
  8. return &nds32_dma_ops;
  9. }
  10. #endif