diff options
| author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-11-29 15:08:40 +0800 | 
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-11-29 16:11:14 +0800 | 
| commit | 585b5fa63da92b2d46d5c1735a5c46e9a1486bbe (patch) | |
| tree | 161e32da1471b1d2c619c0777905d07d87cda49f /arch/arm/crypto/Kconfig | |
| parent | a4b15bed547a3147f26e3c6280e20ac64b925344 (diff) | |
| download | linux-585b5fa63da92b2d46d5c1735a5c46e9a1486bbe.tar.bz2 | |
crypto: arm/aes - Select SIMD in Kconfig
The skcipher conversion for ARM missed the select on CRYPTO_SIMD,
causing build failures if SIMD was not otherwise enabled.
Fixes: da40e7a4ba4d ("crypto: aes-ce - Convert to skcipher")
Fixes: 211f41af534a ("crypto: aesbs - Convert to skcipher")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/arm/crypto/Kconfig')
| -rw-r--r-- | arch/arm/crypto/Kconfig | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/arm/crypto/Kconfig b/arch/arm/crypto/Kconfig index 27ed1b1cd1d7..81348883450d 100644 --- a/arch/arm/crypto/Kconfig +++ b/arch/arm/crypto/Kconfig @@ -105,7 +105,7 @@ config CRYPTO_AES_ARM_CE  	tristate "Accelerated AES using ARMv8 Crypto Extensions"  	depends on KERNEL_MODE_NEON  	select CRYPTO_ALGAPI -	select CRYPTO_ABLK_HELPER +	select CRYPTO_SIMD  	help  	  Use an implementation of AES in CBC, CTR and XTS modes that uses  	  ARMv8 Crypto Extensions |