Release 4.14 arch/s390/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_S390_DMA_MAPPING_H
#define _ASM_S390_DMA_MAPPING_H
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/scatterlist.h>
#include <linux/dma-debug.h>
#include <linux/io.h>
extern const struct dma_map_ops s390_pci_dma_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return &dma_noop_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 14 | 73.68% | 1 | 25.00% |
Bart Van Assche | 4 | 21.05% | 2 | 50.00% |
Christian Bornträger | 1 | 5.26% | 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)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 19 | 86.36% | 1 | 50.00% |
Heiko Carstens | 3 | 13.64% | 1 | 50.00% |
Total | 22 | 100.00% | 2 | 100.00% |
static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
{
if (!dev->dma_mask)
return false;
return addr + size - 1 <= *dev->dma_mask;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 39 | 97.50% | 1 | 50.00% |
Joe Perches | 1 | 2.50% | 1 | 50.00% |
Total | 40 | 100.00% | 2 | 100.00% |
#endif /* _ASM_S390_DMA_MAPPING_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Glauber | 103 | 89.57% | 1 | 14.29% |
Bart Van Assche | 5 | 4.35% | 2 | 28.57% |
Heiko Carstens | 3 | 2.61% | 1 | 14.29% |
Christian Bornträger | 2 | 1.74% | 1 | 14.29% |
Joe Perches | 1 | 0.87% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 0.87% | 1 | 14.29% |
Total | 115 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.