From: Franziska Naepelt Date: Tue, 6 Jun 2023 11:17:49 +0000 (+0200) Subject: crypto: hmac - Add missing blank line X-Git-Tag: v6.6.7~2481^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f75bd28beb4a804a42a01e26f162f8c42b65fb09;p=platform%2Fkernel%2Flinux-starfive.git crypto: hmac - Add missing blank line The following checkpatch warning has been fixed: - WARNING: Missing a blank line after declarations Signed-off-by: Franziska Naepelt Signed-off-by: Herbert Xu --- diff --git a/crypto/hmac.c b/crypto/hmac.c index 09a7872..ea93f4c 100644 --- a/crypto/hmac.c +++ b/crypto/hmac.c @@ -177,6 +177,7 @@ static int hmac_clone_tfm(struct crypto_shash *dst, struct crypto_shash *src) static void hmac_exit_tfm(struct crypto_shash *parent) { struct hmac_ctx *ctx = hmac_ctx(parent); + crypto_free_shash(ctx->hash); }