dmaengine: coh901318: use correct print specifiers
authorVinod Koul <vinod.koul@intel.com>
Tue, 13 Sep 2016 16:48:32 +0000 (22:18 +0530)
committerVinod Koul <vinod.koul@intel.com>
Mon, 26 Sep 2016 16:57:27 +0000 (22:27 +0530)
commit3fd386625679bd2adb94d2a3d25dd2fdd38b52e3
treec7aabb49601732536aa0e3686000955f02dc4238
parent4f5db8c8f8ee965436de24256bbd7a01778d4cdb
dmaengine: coh901318: use correct print specifiers

This driver when compiled on 64 bits gave warnings:

drivers/dma/coh901318.c: In function 'coh901318_list_print':
warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t' [-Wformat=]
warning: format '%x' expects argument of type 'unsigned int', but argument 8 has type 'dma_addr_t' [-Wformat=]
warning: format '%x' expects argument of type 'unsigned int', but argument 9 has type 'dma_addr_t' [-Wformat=]

drivers/dma/coh901318.c: In function 'coh901318_prep_memcpy':
warning: format '%x' expects argument of type 'unsigned int', but argument 6 has type 'dma_addr_t' [-Wformat=]
warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t' [-Wformat=]
warning: format '%d' expects argument of type 'int', but argument 8 has type 'size_t' [-Wformat=]

We should use %pad to print 'dma_addr_t' values and %zu to print size_t
values

Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/coh901318.c