From: Colin Ian King Date: Fri, 17 Jan 2020 09:28:19 +0000 (+0000) Subject: crypto: hisilicon - fix spelling mistake "disgest" -> "digest" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2203d3f7971d28a2bcd8e2439bcead9069089e9a;p=linux.git crypto: hisilicon - fix spelling mistake "disgest" -> "digest" There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c index a0a35685e8384..a2cfcc9ccd942 100644 --- a/drivers/crypto/hisilicon/sec2/sec_crypto.c +++ b/drivers/crypto/hisilicon/sec2/sec_crypto.c @@ -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;