diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2011-11-01 12:12:43 +1100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-11-01 12:12:43 +1100 |
commit | 5db017aa2809c49ca0a43b0f3ed1267e6be60883 (patch) | |
tree | eafc22f9a17e32578d95cfad8642137480ca5563 | |
parent | ea8bdfcff17599e5d80f93e2ae194fbbab7f8d5e (diff) | |
download | op-kernel-dev-5db017aa2809c49ca0a43b0f3ed1267e6be60883.zip op-kernel-dev-5db017aa2809c49ca0a43b0f3ed1267e6be60883.tar.gz |
crypto: user - Depend on NET instead of selecting it
Selecting NET causes all sorts of issues, including a dependency
loop involving bluetooth. This patch makes it a dependency instead.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 259dea9..527a857 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -102,8 +102,8 @@ config CRYPTO_MANAGER2 config CRYPTO_USER tristate "Userspace cryptographic algorithm configuration" + depends on NET select CRYPTO_MANAGER - select NET help Userapace configuration for cryptographic instantiations such as cbc(aes). |