diff options
author | Tadeusz Struk <tadeusz.struk@intel.com> | 2015-06-19 13:27:39 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-06-21 07:59:28 -0400 |
commit | 425e0172a558a68cd44e3ea9d00936b928bc65f4 (patch) | |
tree | 340f3f25a686b20194d41aa40c009c1d7fde2233 /crypto/Kconfig | |
parent | 1bd2cd6bc6ad8b582046818189766f109687b3fe (diff) |
crypto: rsa - fix invalid select for AKCIPHER
Should be CRYPTO_AKCIPHER instead of AKCIPHER
Reported-by: Andreas Ruprecht <andreas.ruprecht@fau.de>
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 2 |
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 | |||
102 | 102 | ||
103 | config CRYPTO_RSA | 103 | config CRYPTO_RSA |
104 | tristate "RSA algorithm" | 104 | tristate "RSA algorithm" |
105 | select AKCIPHER | 105 | select CRYPTO_AKCIPHER |
106 | select MPILIB | 106 | select MPILIB |
107 | select ASN1 | 107 | select ASN1 |
108 | help | 108 | help |