blob: 399a4f49355eb00e6b6db05da27f723be87ebbba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _ALPHA_DMA_MAPPING_H
#define _ALPHA_DMA_MAPPING_H
extern const struct dma_map_ops *dma_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return dma_ops;
}
#endif /* _ALPHA_DMA_MAPPING_H */
|