diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-06-10 18:06:34 +1000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-06-26 17:34:42 +1000 |
commit | b9d0a25a484a90c1d60b974d115eff2fe580ce16 (patch) | |
tree | b76924924662ab1867b53001ea4a0db4a87b57ce /crypto | |
parent | e90b1a2be6010acf01673b0625cfbf18240f7744 (diff) | |
download | linux-3.10-b9d0a25a484a90c1d60b974d115eff2fe580ce16.tar.gz linux-3.10-b9d0a25a484a90c1d60b974d115eff2fe580ce16.tar.bz2 linux-3.10-b9d0a25a484a90c1d60b974d115eff2fe580ce16.zip |
[CRYPTO] tcrypt: Forbid tcrypt from being built-in
It makes no sense to build tcrypt into the kernel. In fact, now that
the driver init function's return status is being checked, it is in
fact harmful to do so.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index c442f2e7ce4..ba133d55704 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -337,7 +337,7 @@ config CRYPTO_CRC32C config CRYPTO_TEST tristate "Testing module" - depends on CRYPTO + depends on CRYPTO && m help Quick & dirty crypto test module. |