Release 4.14 arch/m68k/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _M68K_DMA_MAPPING_H
#define _M68K_DMA_MAPPING_H
extern const struct dma_map_ops m68k_dma_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return &m68k_dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Ungerer | 9 | 47.37% | 1 | 20.00% |
Bart Van Assche | 4 | 21.05% | 2 | 40.00% |
Geert Uytterhoeven | 3 | 15.79% | 1 | 20.00% |
Christoph Hellwig | 3 | 15.79% | 1 | 20.00% |
Total | 19 | 100.00% | 5 | 100.00% |
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
enum dma_data_direction dir)
{
/* we use coherent allocation, so not much to do here. */
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Ungerer | 24 | 100.00% | 1 | 100.00% |
Total | 24 | 100.00% | 1 | 100.00% |
#endif /* _M68K_DMA_MAPPING_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Ungerer | 44 | 74.58% | 1 | 16.67% |
Christoph Hellwig | 6 | 10.17% | 1 | 16.67% |
Bart Van Assche | 5 | 8.47% | 2 | 33.33% |
Geert Uytterhoeven | 3 | 5.08% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.69% | 1 | 16.67% |
Total | 59 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.