summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-02-18 09:00:05 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-02-18 09:00:05 +0800
commite80829107b8f7545e23879080ded4a758800ab95 (patch)
tree49f75ce34b17645a147984f14f7c0e1ae32f5bbe /crypto
parent3a6c1e17c7e858af6f08963e8faa0c88cb60710d (diff)
downloadlinux-crypto-e80829107b8f7545e23879080ded4a758800ab95.tar.gz
linux-crypto-e80829107b8f7545e23879080ded4a758800ab95.zip
[CRYPTO] null: Add missing Kconfig dependency on BLKCIPHER
This patch fixes the following build error caused by commit 24f662d13e39426de8985bd60cf7610a656b4e3e: <-- snip --> ... LD .tmp_vmlinux1 crypto/built-in.o: In function `skcipher_null_crypt': crypto_null.c:(.text+0x3d14): undefined reference to `blkcipher_walk_virt' crypto_null.c:(.text+0x3d14): relocation truncated to fit: R_MIPS_26 against `blkcipher_walk_virt' crypto/built-in.o: In function `$L32': crypto_null.c:(.text+0x3d54): undefined reference to `blkcipher_walk_done' crypto_null.c:(.text+0x3d54): relocation truncated to fit: R_MIPS_26 against `blkcipher_walk_done' crypto/built-in.o:(.data+0x2e8): undefined reference to `crypto_blkcipher_type' make[1]: *** [.tmp_vmlinux1] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index d0287ce5..898acc5c 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -74,6 +74,7 @@ config CRYPTO_XCBC
config CRYPTO_NULL
tristate "Null algorithms"
select CRYPTO_ALGAPI
+ select CRYPTO_BLKCIPHER
help
These are 'Null' algorithms, used by IPsec, which do nothing.