Re: [PATCH 1/2] dmaengine: at_xdmac: Fix compilation warning.

2017-08-21 Thread Vinod Koul
On Mon, Aug 07, 2017 at 01:15:18PM +0530, Arvind Yadav wrote: > Replace '%d' by '%zu' to fix the compilation warning:- >"format ‘%d’ expects argument of type ‘int’,but argument has type ‘size_t’ > [-Wformat=]" Applied both, thanks -- ~Vinod

Re: [PATCH 1/2] dmaengine: at_xdmac: Fix compilation warning.

2017-08-15 Thread Ludovic Desroches
On Mon, Aug 07, 2017 at 01:15:18PM +0530, Arvind Yadav wrote: > Replace '%d' by '%zu' to fix the compilation warning:- >"format ‘%d’ expects argument of type ‘int’,but argument has type ‘size_t’ > [-Wformat=]" > > Signed-off-by: Arvind Yadav Acked-by: Ludovic Desroches Thanks > --- > driv

[PATCH 1/2] dmaengine: at_xdmac: Fix compilation warning.

2017-08-07 Thread Arvind Yadav
Replace '%d' by '%zu' to fix the compilation warning:- "format ‘%d’ expects argument of type ‘int’,but argument has type ‘size_t’ [-Wformat=]" Signed-off-by: Arvind Yadav --- drivers/dma/at_xdmac.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/dma/at_xdm