Commit 2203d3f7 authored by Colin Ian King's avatar Colin Ian King Committed by Herbert Xu
Browse files

crypto: hisilicon - fix spelling mistake "disgest" -> "digest"



There is a spelling mistake in an error message. Fix it.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 72c79437
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -690,7 +690,7 @@ static int sec_aead_auth_set_key(struct sec_auth_ctx *ctx,
		ret = crypto_shash_digest(shash, keys->authkey,
					  keys->authkeylen, ctx->a_key);
		if (ret) {
			pr_err("hisi_sec2: aead auth disgest error!\n");
			pr_err("hisi_sec2: aead auth digest error!\n");
			return -EINVAL;
		}
		ctx->a_key_len = blocksize;