diff options
author | Joshua I. James <joshua@cybercrimetech.com> | 2014-12-05 00:24:44 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-12-22 07:02:35 -0500 |
commit | 4fad478ae0ff7bd27c853a085555317c0dc68704 (patch) | |
tree | 65a32da4c5f56b9f9d69a1b9c961d5e10be51d6f /crypto | |
parent | a861afbc931b489b3b2362f8011cccd2a071ec37 (diff) |
crypto: aead - fixed style error in aead.c
Fixed style error identified by checkpatch.
ERROR: do not use assignment in if condition
+ if ((err = crypto_register_instance(tmpl, inst))) {
Signed-off-by: Joshua I. James <joshua@cybercrimetech.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/aead.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/aead.c b/crypto/aead.c index 547491e35c63..222271070b49 100644 --- a/crypto/aead.c +++ b/crypto/aead.c | |||
@@ -448,7 +448,8 @@ static int crypto_nivaead_default(struct crypto_alg *alg, u32 type, u32 mask) | |||
448 | if (IS_ERR(inst)) | 448 | if (IS_ERR(inst)) |
449 | goto put_tmpl; | 449 | goto put_tmpl; |
450 | 450 | ||
451 | if ((err = crypto_register_instance(tmpl, inst))) { | 451 | err = crypto_register_instance(tmpl, inst); |
452 | if (err) { | ||
452 | tmpl->free(inst); | 453 | tmpl->free(inst); |
453 | goto put_tmpl; | 454 | goto put_tmpl; |
454 | } | 455 | } |