Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 3c2993b8c6143d8a5793746a54eba8f86f95240f authored by Linus Torvalds on 04 June 2017, 23:47:43 UTC
Linux 4.12-rc4
Tip revision: 3c2993b
dma-mapping.h
#ifndef _H8300_DMA_MAPPING_H
#define _H8300_DMA_MAPPING_H

extern const struct dma_map_ops h8300_dma_map_ops;

static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
	return &h8300_dma_map_ops;
}

#endif
back to top