Release 4.10 arch/s390/include/asm/dma-mapping.h
#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>
#define DMA_ERROR_CODE (~(dma_addr_t) 0x0)
extern struct dma_map_ops s390_pci_dma_ops;
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
{
if (dev && dev->archdata.dma_ops)
return dev->archdata.dma_ops;
return &dma_noop_ops;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
christian borntraeger | christian borntraeger | 18 | 51.43% | 1 | 50.00% |
jan glauber | jan glauber | 17 | 48.57% | 1 | 50.00% |
| Total | 35 | 100.00% | 2 | 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 | jan glauber | 19 | 86.36% | 1 | 50.00% |
heiko carstens | 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 | jan glauber | 39 | 97.50% | 1 | 50.00% |
joe perches | 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 | jan glauber | 110 | 82.71% | 1 | 25.00% |
christian borntraeger | christian borntraeger | 19 | 14.29% | 1 | 25.00% |
heiko carstens | heiko carstens | 3 | 2.26% | 1 | 25.00% |
joe perches | joe perches | 1 | 0.75% | 1 | 25.00% |
| Total | 133 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.