aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTadeusz Struk <[email protected]>2015-06-19 17:27:39 +0000
committerHerbert Xu <[email protected]>2015-06-21 11:59:28 +0000
commit425e0172a558a68cd44e3ea9d00936b928bc65f4 (patch)
tree340f3f25a686b20194d41aa40c009c1d7fde2233
parentcrypto: picoxcell - Update to the current clk API (diff)
downloadkernel-425e0172a558a68cd44e3ea9d00936b928bc65f4.tar.gz
kernel-425e0172a558a68cd44e3ea9d00936b928bc65f4.zip
crypto: rsa - fix invalid select for AKCIPHER
Should be CRYPTO_AKCIPHER instead of AKCIPHER Reported-by: Andreas Ruprecht <[email protected]> Signed-off-by: Tadeusz Struk <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
-rw-r--r--crypto/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 6c79ef0e168d..b4cfc5754033 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -102,7 +102,7 @@ config CRYPTO_AKCIPHER
config CRYPTO_RSA
tristate "RSA algorithm"
- select AKCIPHER
+ select CRYPTO_AKCIPHER
select MPILIB
select ASN1
help