15 lines
271 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_SW64_DMA_MAPPING_H
#define _ASM_SW64_DMA_MAPPING_H
2026-01-29 22:25:33 +08:00
2026-01-21 18:59:54 +08:00
extern const struct dma_map_ops *dma_ops;
2026-01-29 22:25:33 +08:00
static inline const struct dma_map_ops *get_arch_dma_ops(void)
2026-01-21 18:59:54 +08:00
{
return dma_ops;
}
2026-01-29 22:25:33 +08:00
#endif /* _ASM_SW64_DMA_MAPPING_H */