summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2007-07-17 20:31:34 +0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:55:36 -0700
commita349365e5e0e0590cf68957abd2ead1e5249fdef (patch)
tree56c5fb1d1b090864170569d8ce646cf889b1c553
parentec931035194709d0cde647d1c347bbf9634eec25 (diff)
downloadlinux-a349365e5e0e0590cf68957abd2ead1e5249fdef.tar.gz
[CRYPTO] Kconfig: Remove "default m"s
Other options requiring specific block cipher algorithms already have
the appropriate select's.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/Kconfig3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 3d1a1e27944f..ec8369cff322 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -146,7 +146,6 @@ config CRYPTO_ECB
 	tristate "ECB support"
 	select CRYPTO_BLKCIPHER
 	select CRYPTO_MANAGER
-	default m
 	help
 	  ECB: Electronic CodeBook mode
 	  This is the simplest block cipher algorithm.  It simply encrypts
@@ -156,7 +155,6 @@ config CRYPTO_CBC
 	tristate "CBC support"
 	select CRYPTO_BLKCIPHER
 	select CRYPTO_MANAGER
-	default m
 	help
 	  CBC: Cipher Block Chaining mode
 	  This block cipher algorithm is required for IPSec.
@@ -165,7 +163,6 @@ config CRYPTO_PCBC
 	tristate "PCBC support"
 	select CRYPTO_BLKCIPHER
 	select CRYPTO_MANAGER
-	default m
 	help
 	  PCBC: Propagating Cipher Block Chaining mode
 	  This block cipher algorithm is required for RxRPC.