Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ASM_X86_DMA_MAPPING_H
0003 #define _ASM_X86_DMA_MAPPING_H
0004 
0005 extern const struct dma_map_ops *dma_ops;
0006 
0007 static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
0008 {
0009     return dma_ops;
0010 }
0011 
0012 #endif