diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-05-26 05:29:33 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-06-30 01:43:42 +0200 |
commit | c3e73e76a90b1e790e0bb7bb36135be9232f58de (patch) | |
tree | 28516c9807272ee05ae85d2835b2b1923a53d21f /arch/x86/crypto/ghash-clmulni-intel_glue.c | |
parent | crypto: caam - fix operator precedence in shared descriptor allocation (diff) | |
download | linux-c3e73e76a90b1e790e0bb7bb36135be9232f58de.tar.xz linux-c3e73e76a90b1e790e0bb7bb36135be9232f58de.zip |
crypto: ghash-intel - Fix set but not used in ghash_async_setkey()
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/ghash-clmulni-intel_glue.c')
-rw-r--r-- | arch/x86/crypto/ghash-clmulni-intel_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/ghash-clmulni-intel_glue.c b/arch/x86/crypto/ghash-clmulni-intel_glue.c index 7a6e68e4f748..976aa64d9a20 100644 --- a/arch/x86/crypto/ghash-clmulni-intel_glue.c +++ b/arch/x86/crypto/ghash-clmulni-intel_glue.c @@ -245,7 +245,7 @@ static int ghash_async_setkey(struct crypto_ahash *tfm, const u8 *key, crypto_ahash_set_flags(tfm, crypto_ahash_get_flags(child) & CRYPTO_TFM_RES_MASK); - return 0; + return err; } static int ghash_async_init_tfm(struct crypto_tfm *tfm) |