Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0efcb8d5 authored by Joshua I. James's avatar Joshua I. James Committed by Herbert Xu
Browse files

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: default avatarJoshua I. James <joshua@cybercrimetech.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b516d514
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -473,6 +473,7 @@ void crypto_unregister_template(struct crypto_template *tmpl)
	list = &tmpl->instances;
	list = &tmpl->instances;
	hlist_for_each_entry(inst, list, list) {
	hlist_for_each_entry(inst, list, list) {
		int err = crypto_remove_alg(&inst->alg, &users);
		int err = crypto_remove_alg(&inst->alg, &users);

		BUG_ON(err);
		BUG_ON(err);
	}
	}