Message ID | 20191114104907.10645-2-clabbe.montjoie@gmail.com |
---|---|
State | Accepted |
Commit | 7ca2a71d177f51d1d0d339657d3b0cc988d1518e |
Headers | show |
Series | [1/2] crypto: sun4i-ss: Fix 64-bit size_t warnings on sun4i-ss-hash.c | expand |
diff --git a/drivers/crypto/allwinner/Kconfig b/drivers/crypto/allwinner/Kconfig index b3c9c34a30de..b0a5a0827483 100644 --- a/drivers/crypto/allwinner/Kconfig +++ b/drivers/crypto/allwinner/Kconfig @@ -7,7 +7,7 @@ config CRYPTO_DEV_ALLWINNER config CRYPTO_DEV_SUN4I_SS tristate "Support for Allwinner Security System cryptographic accelerator" - depends on ARCH_SUNXI && !64BIT + depends on ARCH_SUNXI depends on PM depends on CRYPTO_DEV_ALLWINNER select CRYPTO_MD5
The driver now compile without warnings on 64bits, we can remove the !64BIT condition. Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> --- drivers/crypto/allwinner/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.23.0