/* * Implements the generic device dma API for microblaze and the pci * * Copyright (C) 2009-2010 Michal Simek <monstr@monstr.eu> * Copyright (C) 2009-2010 PetaLogix * * This file is subject to the terms and conditions of the GNU General * Public License. See the file COPYING in the main directory of this * archive for more details. * * This file is base on powerpc and x86 dma-mapping.h versions * Copyright (C) 2004 IBM */ #ifndef _ASM_MICROBLAZE_DMA_MAPPING_H #define _ASM_MICROBLAZE_DMA_MAPPING_H /* * Available generic sets of operations */ extern const struct dma_map_ops dma_direct_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus) { return &dma_direct_ops; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 15 | 78.95% | 2 | 50.00% |
Bart Van Assche | 4 | 21.05% | 2 | 50.00% |
Total | 19 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 31 | 86.11% | 2 | 50.00% |
Bart Van Assche | 5 | 13.89% | 2 | 50.00% |
Total | 36 | 100.00% | 4 | 100.00% |