15 Jan
2017
15 Jan
'17
8:16 p.m.
On Sun, Jan 15, 2017 at 01:43:31PM +0100, Nicolas Iooss wrote:
When fsl_asrc_dma_prepare_and_submit() calls dmaengine_prep_dma_cyclic(), it uses either DMA_TO_DEVICE or DMA_FROM_DEVICE. These values are both items of dma_data_direction enum, not of dma_data_direction enum, which is the type expected by dmaengine_prep_dma_cyclic().
Replace DMA_TO_DEVICE with DMA_MEM_TO_DEV and DMA_FROM_DEVICE with DMA_DEV_TO_MEM to fix this type mismatch issue.
Signed-off-by: Nicolas Iooss nicolas.iooss_linux@m4x.org
Acked-by: Nicolin Chen nicoleotsuka@gmail.com
Thanks.