提交 1e373301 编写于 作者: V Vignesh Raghavendra 提交者: Tom Rini

dma: Add stub of dma_memcpy and dma_get_device

Add stub for dma_memcpy() and dma_get_device when CONFIG_DMA is
disabled. This avoids ifdefs in driver code using DMA APIs
Signed-off-by: NVignesh Raghavendra <vigneshr@ti.com>
Reviewed-by: NSimon Glass <sjg@chromium.org>
上级 74326a32
......@@ -304,6 +304,7 @@ int dma_send(struct dma *dma, void *src, size_t len, void *metadata);
int dma_get_cfg(struct dma *dma, u32 cfg_id, void **cfg_data);
#endif /* CONFIG_DMA_CHANNELS */
#if CONFIG_IS_ENABLED(DMA)
/*
* dma_get_device - get a DMA device which supports transfer
* type of transfer_type
......@@ -327,5 +328,15 @@ int dma_get_device(u32 transfer_type, struct udevice **devp);
transferred and on failure return error code.
*/
int dma_memcpy(void *dst, void *src, size_t len);
#else
static inline int dma_get_device(u32 transfer_type, struct udevice **devp)
{
return -ENOSYS;
}
static inline int dma_memcpy(void *dst, void *src, size_t len)
{
return -ENOSYS;
}
#endif /* CONFIG_DMA */
#endif /* _DMA_H_ */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册