1
0
Fork 0
alistair23-linux/drivers/crypto/cavium/zip
Arnd Bergmann d64069ee18 crypto: zip - add a cast for printing atomic64_t values
kernelci.org reports a build-time regression on linux-next, with a harmless
warning in x86 allmodconfig:

drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 7 has type 'long long int' [-Wformat=]
drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'long long int' [-Wformat=]
drivers/crypto/cavium/zip/zip_main.c:489:18: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'long long int' [-Wformat=]

The return type for atomic64_read() unfortunately differs between
architectures, with some defining it as atomic_long_read() and others
returning a 64-bit type explicitly. Fixing this in general would be nice,
but also require changing other users of these functions, so the simpler
workaround is to add a cast here that avoids the warnings on the default
build.

Fixes: 09ae5d37e0 ("crypto: zip - Add Compression/Decompression statistics")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2017-03-24 22:03:01 +08:00
..
Makefile crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
common.h
zip_crypto.c crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
zip_crypto.h crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
zip_deflate.c crypto: zip - Add Compression/Decompression statistics 2017-03-09 18:34:26 +08:00
zip_deflate.h crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
zip_device.c crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
zip_device.h
zip_inflate.c crypto: zip - Add Compression/Decompression statistics 2017-03-09 18:34:26 +08:00
zip_inflate.h crypto: zip - Wire-up Compression / decompression HW offload 2017-03-09 18:34:26 +08:00
zip_main.c crypto: zip - add a cast for printing atomic64_t values 2017-03-24 22:03:01 +08:00
zip_main.h crypto: zip - Add Compression/Decompression statistics 2017-03-09 18:34:26 +08:00
zip_mem.c
zip_mem.h
zip_regs.h