crypto: sahara - fix debug output for 64-bit dma_addr_t
authorArnd Bergmann <arnd@arndb.de>
Tue, 8 Dec 2015 15:24:22 +0000 (16:24 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 10 Dec 2015 14:39:50 +0000 (22:39 +0800)
commitd4b98f20f46454c153201d55c8336f769b7eb195
tree8934021ac580d4d0983f8656c8563dd71802a292
parent75d3f811f33ac994264c2cfb4bbc5220734300a5
crypto: sahara - fix debug output for 64-bit dma_addr_t

The sahara_dump_descriptors and sahara_dump_links functions attempt
to print a dma_addr_t value with a 0x%08x format string, which
produces a warning when dma_addr_t is 64-bit wide:

drivers/crypto/sahara.c:419:120: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]

This changes the code to use the %pad format string that is meant
for dma_addr_t, which avoids the warning and gives us the correct
output in all configurations.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/sahara.c