2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _ALPHA_DMA_MAPPING_H
|
|
|
|
#define _ALPHA_DMA_MAPPING_H
|
|
|
|
|
2017-01-20 21:04:01 +00:00
|
|
|
extern const struct dma_map_ops *dma_ops;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-01-20 21:04:04 +00:00
|
|
|
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
|
2010-03-10 23:23:37 +00:00
|
|
|
{
|
|
|
|
return dma_ops;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-30 13:23:55 +00:00
|
|
|
#define dma_cache_sync(dev, va, size, dir) ((void)0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* _ALPHA_DMA_MAPPING_H */
|