Skip to content

Commit

Permalink
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Browse files Browse the repository at this point in the history
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
  [CRYPTO] tcrypt: Add missing error check
  [CRYPTO] padlock: Make CRYPTO_DEV_PADLOCK a tristate again
  • Loading branch information
Linus Torvalds committed May 19, 2007
2 parents 1a06a52 + 29059d1 commit 6612354
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crypto/tcrypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ static int test_hash_cycles(struct hash_desc *desc, char *p, int blen,
if (ret)
goto out;
}
crypto_hash_final(desc, out);
ret = crypto_hash_final(desc, out);
if (ret)
goto out;
}
Expand Down
4 changes: 2 additions & 2 deletions drivers/crypto/Kconfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
menu "Hardware crypto devices"

config CRYPTO_DEV_PADLOCK
bool "Support for VIA PadLock ACE"
tristate "Support for VIA PadLock ACE"
depends on X86_32
select CRYPTO_ALGAPI
default y
default m
help
Some VIA processors come with an integrated crypto engine
(so called VIA PadLock ACE, Advanced Cryptography Engine)
Expand Down

0 comments on commit 6612354

Please sign in to comment.