Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-11-28 Thread Vinod Koul
On Thu, Nov 28, 2013 at 02:33:22PM -0800, Dan Williams wrote: > On Wed, Nov 27, 2013 at 11:25 PM, Vinod Koul wrote: > > On Wed, Nov 13, 2013 at 02:28:58PM +0530, Vinod Koul wrote: > >> On Tue, Nov 12, 2013 at 07:28:10PM +0900, Kukjin Kim wrote: > >> > Vinod Koul wrote: > >> > > > >> > > On Thu, Oc

Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-11-28 Thread Dan Williams
On Wed, Nov 27, 2013 at 11:25 PM, Vinod Koul wrote: > On Wed, Nov 13, 2013 at 02:28:58PM +0530, Vinod Koul wrote: >> On Tue, Nov 12, 2013 at 07:28:10PM +0900, Kukjin Kim wrote: >> > Vinod Koul wrote: >> > > >> > > On Thu, Oct 31, 2013 at 10:48:09AM +0530, Sachin Kamat wrote: >> > > > Use the recen

Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-11-28 Thread Vinod Koul
On Wed, Nov 13, 2013 at 02:28:58PM +0530, Vinod Koul wrote: > On Tue, Nov 12, 2013 at 07:28:10PM +0900, Kukjin Kim wrote: > > Vinod Koul wrote: > > > > > > On Thu, Oct 31, 2013 at 10:48:09AM +0530, Sachin Kamat wrote: > > > > Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. > > > >

Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-11-13 Thread Vinod Koul
On Tue, Nov 12, 2013 at 07:28:10PM +0900, Kukjin Kim wrote: > Vinod Koul wrote: > > > > On Thu, Oct 31, 2013 at 10:48:09AM +0530, Sachin Kamat wrote: > > > Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. > > > Without this patch we get the following build error: > > > drivers/dma/

RE: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-11-12 Thread Kukjin Kim
Vinod Koul wrote: > > On Thu, Oct 31, 2013 at 10:48:09AM +0530, Sachin Kamat wrote: > > Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. > > Without this patch we get the following build error: > > drivers/dma/s3c24xx-dma.c: In function ‘s3c24xx_dma_tx_status’: > > drivers/dma/s3c2

Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-10-31 Thread Heiko Stübner
Am Donnerstag, 31. Oktober 2013, 06:18:09 schrieb Sachin Kamat: > Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. > Without this patch we get the following build error: > drivers/dma/s3c24xx-dma.c: In function ‘s3c24xx_dma_tx_status’: > drivers/dma/s3c24xx-dma.c:798:13: error: ‘DMA

Re: [PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-10-31 Thread Vinod Koul
On Thu, Oct 31, 2013 at 10:48:09AM +0530, Sachin Kamat wrote: > Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. > Without this patch we get the following build error: > drivers/dma/s3c24xx-dma.c: In function ‘s3c24xx_dma_tx_status’: > drivers/dma/s3c24xx-dma.c:798:13: error: ‘DMA_S

[PATCH 1/1] dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status

2013-10-30 Thread Sachin Kamat
Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS. Without this patch we get the following build error: drivers/dma/s3c24xx-dma.c: In function ‘s3c24xx_dma_tx_status’: drivers/dma/s3c24xx-dma.c:798:13: error: ‘DMA_SUCCESS’ undeclared (first use in this function) Signed-off-by: Sachin