Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'xtensa-20150526' of git://github.com/czankel/xtensa-linux

Pull Xtensa fix from Chris Zankel:
"This fixes allmodconfig, which fails to build due to missing
dma_alloc_attrs() and dma_free_attrs() functions"

* tag 'xtensa-20150526' of git://github.com/czankel/xtensa-linux:
xtensa: Provide dummy dma_alloc_attrs() and dma_free_attrs()

+13
+13
arch/xtensa/include/asm/dma-mapping.h
··· 185 185 return -EINVAL; 186 186 } 187 187 188 + static inline void *dma_alloc_attrs(struct device *dev, size_t size, 189 + dma_addr_t *dma_handle, gfp_t flag, 190 + struct dma_attrs *attrs) 191 + { 192 + return NULL; 193 + } 194 + 195 + static inline void dma_free_attrs(struct device *dev, size_t size, 196 + void *vaddr, dma_addr_t dma_handle, 197 + struct dma_attrs *attrs) 198 + { 199 + } 200 + 188 201 #endif /* _XTENSA_DMA_MAPPING_H */