Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef ___ASM_SPARC_DMA_MAPPING_H
0003 #define ___ASM_SPARC_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     /* sparc32 uses per-device dma_ops */
0010     return IS_ENABLED(CONFIG_SPARC64) ? dma_ops : NULL;
0011 }
0012 
0013 #endif