projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07bf44f
)
crypto: shash - Remove superfluous check in init_tfm
author
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 14 Jan 2009 02:34:48 +0000
(13:34 +1100)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 18 Feb 2009 08:48:05 +0000
(16:48 +0800)
We're currently checking the frontend type in init_tfm. This is
completely pointless because the fact that we're called at all
means that the frontend is ours so the type must match as well.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/shash.c
patch
|
blob
|
blame
|
history
diff --git
a/crypto/shash.c
b/crypto/shash.c
index d5a2b619c55f79e3b7cbff1f1d06d3048364b49c..13a0dc150a4d3741a6958b5ae59611d621925be9 100644
(file)
--- a/
crypto/shash.c
+++ b/
crypto/shash.c
@@
-442,8
+442,6
@@
static unsigned int crypto_shash_ctxsize(struct crypto_alg *alg, u32 type,
static int crypto_shash_init_tfm(struct crypto_tfm *tfm,
const struct crypto_type *frontend)
{
- if (frontend->type != CRYPTO_ALG_TYPE_SHASH)
- return -EINVAL;
return 0;
}