diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2010-11-29 09:56:03 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2010-11-29 09:56:03 -0500 |
commit | 7451708f39db19a8303bb7fb95f00aca9f673cb5 (patch) | |
tree | 556eb5a9c013349660a0717bbf979888b366a39a /crypto | |
parent | 559ad0ff1368baea14dbc3207d55b02bd69bda4b (diff) |
crypto: af_alg - Add dependency on NET
Add missing dependency on NET since we require sockets for our
interface.
Should really be a select but kconfig doesn't like that:
net/Kconfig:6:error: found recursive dependency: NET -> NETWORK_FILESYSTEMS -> AFS_FS -> AF_RXRPC -> CRYPTO -> CRYPTO_USER_API_HASH -> CRYPTO_USER_API -> NET
Reported-by: Zimny Lech <napohybelskurwysynom2010@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 467491df3e3a..96b0e5542121 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -848,6 +848,7 @@ config CRYPTO_USER_API | |||
848 | 848 | ||
849 | config CRYPTO_USER_API_HASH | 849 | config CRYPTO_USER_API_HASH |
850 | tristate "User-space interface for hash algorithms" | 850 | tristate "User-space interface for hash algorithms" |
851 | depends on NET | ||
851 | select CRYPTO_HASH | 852 | select CRYPTO_HASH |
852 | select CRYPTO_USER_API | 853 | select CRYPTO_USER_API |
853 | help | 854 | help |
@@ -856,6 +857,7 @@ config CRYPTO_USER_API_HASH | |||
856 | 857 | ||
857 | config CRYPTO_USER_API_SKCIPHER | 858 | config CRYPTO_USER_API_SKCIPHER |
858 | tristate "User-space interface for symmetric key cipher algorithms" | 859 | tristate "User-space interface for symmetric key cipher algorithms" |
860 | depends on NET | ||
859 | select CRYPTO_BLKCIPHER | 861 | select CRYPTO_BLKCIPHER |
860 | select CRYPTO_USER_API | 862 | select CRYPTO_USER_API |
861 | help | 863 | help |