diff options
author | Franziska Naepelt <franziska.naepelt@googlemail.com> | 2023-06-06 13:17:49 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-06-16 20:30:35 +0800 |
commit | f75bd28beb4a804a42a01e26f162f8c42b65fb09 (patch) | |
tree | 7d8e6dee590655dce7470ef72b7137d2e3698726 /crypto | |
parent | d776b25495f2c71b9dbf1f5e53b642215ba72f3c (diff) |
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 <franziska.naepelt@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/hmac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/hmac.c b/crypto/hmac.c index 09a7872b4060..ea93f4c55f25 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); } |