diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-05-04 18:30:47 -0400 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2015-05-25 19:03:16 -0400 |
commit | e74993aef4411995960052506a000f94411a7103 (patch) | |
tree | b92817360abe79e5c59f037480efcde3cb9e3633 | |
parent | ba155e2d21f6bf05de86a78dbe5bfd8757604a65 (diff) |
xtensa: Provide dummy dma_alloc_attrs() and dma_free_attrs()
xtensa:allmodconfig fails to build with the following errors.
drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:
In function ‘gk20a_instobj_dtor_dma’:
drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:154:2: error:
implicit declaration of function ‘dma_free_attrs’
drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:
In function ‘gk20a_instobj_ctor_dma’:
drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:218:2: error:
implicit declaration of function ‘dma_alloc_attrs’
Xtensa does not provide those functions at this time.
Provide dummy implementations to avoid build errors.
Acked-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Chris Zankel <chris@zankel.net>
-rw-r--r-- | arch/xtensa/include/asm/dma-mapping.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/xtensa/include/asm/dma-mapping.h b/arch/xtensa/include/asm/dma-mapping.h index 172a02a6ad14..ba78ccf651e7 100644 --- a/arch/xtensa/include/asm/dma-mapping.h +++ b/arch/xtensa/include/asm/dma-mapping.h | |||
@@ -185,4 +185,17 @@ static inline int dma_get_sgtable(struct device *dev, struct sg_table *sgt, | |||
185 | return -EINVAL; | 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 | #endif /* _XTENSA_DMA_MAPPING_H */ | 201 | #endif /* _XTENSA_DMA_MAPPING_H */ |