diff options
author | Tadeusz Struk <[email protected]> | 2015-06-19 10:27:39 -0700 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2015-06-21 19:59:28 +0800 |
commit | 425e0172a558a68cd44e3ea9d00936b928bc65f4 (patch) | |
tree | 340f3f25a686b20194d41aa40c009c1d7fde2233 | |
parent | 1bd2cd6bc6ad8b582046818189766f109687b3fe (diff) |
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/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 config CRYPTO_RSA tristate "RSA algorithm" - select AKCIPHER + select CRYPTO_AKCIPHER select MPILIB select ASN1 help |