Re: [PATCH] arm64: fix build error if DMA_CMA is enabled

2014-01-24 Thread Laura Abbott
On 1/24/2014 7:37 AM, Catalin Marinas wrote: On Fri, Jan 24, 2014 at 08:23:08AM +, Pankaj Dubey wrote: arm64/include/asm/dma-contiguous.h is trying to include which does not exist, and thus failing build for arm64 if we enable CONFIG_DMA_CMA. This patch fixes build error by removing unwante

Re: [PATCH] arm64: fix build error if DMA_CMA is enabled

2014-01-24 Thread Catalin Marinas
On Fri, Jan 24, 2014 at 08:23:08AM +, Pankaj Dubey wrote: > arm64/include/asm/dma-contiguous.h is trying to include > which does not exist, and thus failing > build for arm64 if we enable CONFIG_DMA_CMA. This patch fixes build > error by removing unwanted header inclusion from arm64's dma-con

[PATCH] arm64: fix build error if DMA_CMA is enabled

2014-01-24 Thread Pankaj Dubey
arm64/include/asm/dma-contiguous.h is trying to include which does not exist, and thus failing build for arm64 if we enable CONFIG_DMA_CMA. This patch fixes build error by removing unwanted header inclusion from arm64's dma-contiguous.h. Signed-off-by: Pankaj Dubey Signed-off-by: Somraj Mani -