crypto: sahara - fix 64-bit dma_addr_t compilation
authorArnd Bergmann <arnd@arndb.de>
Tue, 8 Dec 2015 15:23:51 +0000 (16:23 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 10 Dec 2015 14:39:48 +0000 (22:39 +0800)
commit75d3f811f33ac994264c2cfb4bbc5220734300a5
treecb404e418459d51d976eb28050d4b9a86a255adc
parente4bc02aced3731776c8828d34e13c02ebdec3088
crypto: sahara - fix 64-bit dma_addr_t compilation

The sahara hardware uses DMA descriptors with 32-bit addresses, but
dma_addr_t is variable size depending on whether we want to support
any devices that use 64-bit DMA addresses in hardware.
This means that the definition of the DMA descriptor structure is wrong,
and we helpfully get a compiler warning about them too:

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

This changes the definition of the sahara_hw_desc and sahara_hw_link
structures to only contain fixed-length members, which is required
to make the driver work on ARM LPAE mode, and avoids most of the
gcc warnings we get.

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