Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 32b88194f71d6ae7768a29f87fbba454728273ee authored by Linus Torvalds on 25 October 2015, 01:39:47 UTC
Linux 4.3-rc7
Tip revision: 32b8819
dma-mapping.h
#ifndef _H8300_DMA_MAPPING_H
#define _H8300_DMA_MAPPING_H

extern struct dma_map_ops h8300_dma_map_ops;

static inline struct dma_map_ops *get_dma_ops(struct device *dev)
{
	return &h8300_dma_map_ops;
}

#include <asm-generic/dma-mapping-common.h>

#endif
back to top