dmaengine: ep93xx: use correct print specifiers for size_t
authorVinod Koul <vinod.koul@intel.com>
Wed, 14 Sep 2016 10:09:56 +0000 (15:39 +0530)
committerVinod Koul <vinod.koul@intel.com>
Mon, 26 Sep 2016 16:59:36 +0000 (22:29 +0530)
commit567df5e9770f7b5203010fd8a5e7c34b387b90a3
treef94c85940745d3c3b9ca129669cbf3aeebf9e741
parent6947c3f2870281961225b070c22ae5a382e36b6b
dmaengine: ep93xx: use correct print specifiers for size_t

This driver warns:

drivers/dma/ep93xx_dma.c: In function 'ep93xx_dma_prep_slave_sg':
drivers/dma/ep93xx_dma.c:1054:6: warning: format '%d' expects argument of type 'int', but argument 3 has type 'size_t' [-Wformat=]

drivers/dma/ep93xx_dma.c: In function 'ep93xx_dma_prep_dma_cyclic':
drivers/dma/ep93xx_dma.c:1129:5: warning: format '%d' expects argument of type 'int', but argument 3 has type 'size_t' [-Wformat=]

We should use %zu to print 'size_t' values.

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/ep93xx_dma.c