Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c8620c2590f43eff864fe597fcbe5b72ab7a7b94
Commit:     c8620c2590f43eff864fe597fcbe5b72ab7a7b94
Parent:     242f1a343776a621ad5c3446d6f2718d37863cb5
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Mon Feb 18 09:00:05 2008 +0800
Committer:  Herbert Xu <[EMAIL PROTECTED]>
CommitDate: Mon Feb 18 09:00:05 2008 +0800

    [CRYPTO] null: Add missing Kconfig dependency on BLKCIPHER
    
    This patch fixes the following build error caused by commit
    3631c650c495d61b1dabf32eb26b46873636e918:
    
    <--  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 <[EMAIL PROTECTED]>
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
---
 crypto/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/crypto/Kconfig b/crypto/Kconfig
index d0287ce..898acc5 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.
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to