Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ALPHA_DMA_MAPPING_H
0003 #define _ALPHA_DMA_MAPPING_H
0004 
0005 extern const struct dma_map_ops alpha_pci_ops;
0006 
0007 static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
0008 {
0009 #ifdef CONFIG_ALPHA_JENSEN
0010     return NULL;
0011 #else
0012     return &alpha_pci_ops;
0013 #endif
0014 }
0015 
0016 #endif  /* _ALPHA_DMA_MAPPING_H */