From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Fix printk format warnings by using size_t modifiers ('z'): ../drivers/dma/sh/rcar-dmac.c:759:4: warning: format '%u' expects argument of type 'unsigned int', but argument 9 has type 'size_t' [-Wformat=] ../drivers/dma/sh/rcar-dmac.c:759:4: warning: format '%u' expects argument of type 'unsigned int', but argument 10 has type 'size_t' [-Wformat=] Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Acked-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> Signed-off-by: Simon Horman <horms+renesas@xxxxxxxxxxxx> --- drivers/dma/sh/rcar-dmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c index 45ae37e..8c21d489d 100644 --- a/drivers/dma/sh/rcar-dmac.c +++ b/drivers/dma/sh/rcar-dmac.c @@ -757,7 +757,7 @@ rcar_dmac_chan_prep_sg(struct rcar_dmac_chan *chan, struct scatterlist *sgl, hwdesc->size = size; dev_dbg(chan->chan.device->dev, - "chan%u: hwdesc %p/%p sgl %u@%p, %u/%u %pad -> %pad\n", + "chan%u: hwdesc %p/%p sgl %u@%p, %zu/%zu %pad -> %pad\n", chan->index, hwdesc, desc, i, sg, size, len, &hwdesc->src_addr, &hwdesc->dst_addr); -- 2.0.1 -- To unsubscribe from this list: send the line "unsubscribe dmaengine" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html