Release 4.14 arch/frv/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_DMA_MAPPING_H
#define _ASM_DMA_MAPPING_H
#include <asm/cache.h>
#include <asm/cacheflush.h>
extern unsigned long __nongprelbss dma_coherent_mem_start;
extern unsigned long __nongprelbss dma_coherent_mem_end;
extern const struct dma_map_ops frv_dma_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return &frv_dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 12 | 63.16% | 1 | 25.00% |
Bart Van Assche | 4 | 21.05% | 2 | 50.00% |
Christoph Hellwig | 3 | 15.79% | 1 | 25.00% |
Total | 19 | 100.00% | 4 | 100.00% |
static inline
void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
enum dma_data_direction direction)
{
flush_write_buffers();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 21 | 80.77% | 1 | 50.00% |
Ralf Bächle | 5 | 19.23% | 1 | 50.00% |
Total | 26 | 100.00% | 2 | 100.00% |
#endif /* _ASM_DMA_MAPPING_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 59 | 74.68% | 2 | 22.22% |
Christoph Hellwig | 8 | 10.13% | 2 | 22.22% |
Ralf Bächle | 5 | 6.33% | 1 | 11.11% |
Bart Van Assche | 5 | 6.33% | 2 | 22.22% |
Greg Kroah-Hartman | 1 | 1.27% | 1 | 11.11% |
FUJITA Tomonori | 1 | 1.27% | 1 | 11.11% |
Total | 79 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.