Commit 1f43fb6d authored by Kamal Heib's avatar Kamal Heib Committed by Greg Kroah-Hartman

staging: ccree: Fix missing blank line after declaration

Fix the following warning found by checkpatch.pl

WARNING: Missing a blank line after declarations
+	struct cc_cipher_handle *blkcipher_handle = drvdata->blkcipher_handle;
+	if (blkcipher_handle) {
Signed-off-by: default avatarKamal Heib <kamalheib1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 650655d3
...@@ -1094,6 +1094,7 @@ int cc_cipher_free(struct cc_drvdata *drvdata) ...@@ -1094,6 +1094,7 @@ int cc_cipher_free(struct cc_drvdata *drvdata)
{ {
struct cc_crypto_alg *t_alg, *n; struct cc_crypto_alg *t_alg, *n;
struct cc_cipher_handle *blkcipher_handle = drvdata->blkcipher_handle; struct cc_cipher_handle *blkcipher_handle = drvdata->blkcipher_handle;
if (blkcipher_handle) { if (blkcipher_handle) {
/* Remove registered algs */ /* Remove registered algs */
list_for_each_entry_safe(t_alg, n, list_for_each_entry_safe(t_alg, n,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment