diff mbox

staging: crypto: fixed style erro in algapi.c

Message ID 1417759210-12904-1-git-send-email-Joshua@cybercrimetech.com (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show

Commit Message

Joshua I. James Dec. 5, 2014, 6 a.m. UTC
From: "Joshua I. James" <joshua@cybercrimetech.com>

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>
---
 crypto/algapi.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/crypto/algapi.c b/crypto/algapi.c
index e8d3a7d..512730d 100644
--- a/crypto/algapi.c
+++ b/crypto/algapi.c
@@ -473,6 +473,7 @@  void crypto_unregister_template(struct crypto_template *tmpl)
 	list = &tmpl->instances;
 	hlist_for_each_entry(inst, list, list) {
 		int err = crypto_remove_alg(&inst->alg, &users);
+
 		BUG_ON(err);
 	}