From: Frederik Deweerdt Date: Fri, 15 Feb 2008 11:19:33 +0000 (+0800) Subject: [CRYPTO] tcrypt: Add missing Kconfig dependency on BLKCIPHER X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=242f1a343776a621ad5c3446d6f2718d37863cb5;p=linux-beck.git [CRYPTO] tcrypt: Add missing Kconfig dependency on BLKCIPHER Building latest git fails with the following error: ERROR: "crypto_alloc_ablkcipher" [crypto/tcrypt.ko] undefined! This appears to happen because CONFIG_CRYPTO_TEST is set while CONFIG_CRYPTO_BLKCIPHER is not. The following patch fixes the problem for me. Signed-off-by: Frederik Deweerdt Signed-off-by: Herbert Xu --- diff --git a/crypto/Kconfig b/crypto/Kconfig index c3166a1a5bb6..d0287ce56daf 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -567,6 +567,7 @@ config CRYPTO_TEST depends on m select CRYPTO_ALGAPI select CRYPTO_AEAD + select CRYPTO_BLKCIPHER help Quick & dirty crypto test module.