Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 16f73eb02d7e1765ccab3d2018e0bd98eb93d973 authored by Linus Torvalds on 30 July 2017, 19:40:36 UTC
Linux 4.13-rc3
Tip revision: 16f73eb
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