diff options
author | Joshua I. James <joshua@cybercrimetech.com> | 2014-12-05 01:00:10 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-12-22 07:02:37 -0500 |
commit | 0efcb8d5b2f7af86818179810cc080b326a83e19 (patch) | |
tree | 9ee4fe4e371eb0adec44aef652fa87b12fa56c63 /crypto | |
parent | b516d514020f17c83267f76366691e4cc9b7bddf (diff) |
crypto: api - fixed style erro in algapi.c
Fixed style error identified by checkpatch.
WARNING: Missing a blank line after declarations
+ int err = crypto_remove_alg(&inst->alg, &users);
+ BUG_ON(err);
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/algapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index 71a8143e23b1..83b04e0884b1 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c | |||
@@ -473,6 +473,7 @@ void crypto_unregister_template(struct crypto_template *tmpl) | |||
473 | list = &tmpl->instances; | 473 | list = &tmpl->instances; |
474 | hlist_for_each_entry(inst, list, list) { | 474 | hlist_for_each_entry(inst, list, list) { |
475 | int err = crypto_remove_alg(&inst->alg, &users); | 475 | int err = crypto_remove_alg(&inst->alg, &users); |
476 | |||
476 | BUG_ON(err); | 477 | BUG_ON(err); |
477 | } | 478 | } |
478 | 479 | ||