All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest"
@ 2020-01-17  9:28 Colin King
  2020-01-17  9:32   ` Xu Zaibo
  2020-01-22 10:15   ` Herbert Xu
  0 siblings, 2 replies; 5+ messages in thread
From: Colin King @ 2020-01-17  9:28 UTC (permalink / raw)
  To: Zaibo Xu, Herbert Xu, David S . Miller, linux-crypto
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

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

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c
index a0a35685e838..a2cfcc9ccd94 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;
-- 
2.24.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest"
  2020-01-17  9:28 [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest" Colin King
@ 2020-01-17  9:32   ` Xu Zaibo
  2020-01-22 10:15   ` Herbert Xu
  1 sibling, 0 replies; 5+ messages in thread
From: Xu Zaibo @ 2020-01-17  9:32 UTC (permalink / raw)
  To: Colin King, Herbert Xu, David S . Miller, linux-crypto
  Cc: kernel-janitors, linux-kernel


Yes, thanks.


On 2020/1/17 17:28, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in an error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c
> index a0a35685e838..a2cfcc9ccd94 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;



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest"
@ 2020-01-17  9:32   ` Xu Zaibo
  0 siblings, 0 replies; 5+ messages in thread
From: Xu Zaibo @ 2020-01-17  9:32 UTC (permalink / raw)
  To: Colin King, Herbert Xu, David S . Miller, linux-crypto
  Cc: kernel-janitors, linux-kernel


Yes, thanks.


On 2020/1/17 17:28, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in an error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c
> index a0a35685e838..a2cfcc9ccd94 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;

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest"
  2020-01-17  9:28 [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest" Colin King
@ 2020-01-22 10:15   ` Herbert Xu
  2020-01-22 10:15   ` Herbert Xu
  1 sibling, 0 replies; 5+ messages in thread
From: Herbert Xu @ 2020-01-22 10:15 UTC (permalink / raw)
  To: Colin King
  Cc: Zaibo Xu, David S . Miller, linux-crypto, kernel-janitors, linux-kernel

On Fri, Jan 17, 2020 at 09:28:19AM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in an error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest"
@ 2020-01-22 10:15   ` Herbert Xu
  0 siblings, 0 replies; 5+ messages in thread
From: Herbert Xu @ 2020-01-22 10:15 UTC (permalink / raw)
  To: Colin King
  Cc: Zaibo Xu, David S . Miller, linux-crypto, kernel-janitors, linux-kernel

On Fri, Jan 17, 2020 at 09:28:19AM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in an error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/crypto/hisilicon/sec2/sec_crypto.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-01-22 10:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-17  9:28 [PATCH][next] crypto: hisilicon: fix spelling mistake "disgest" -> "digest" Colin King
2020-01-17  9:32 ` Xu Zaibo
2020-01-17  9:32   ` Xu Zaibo
2020-01-22 10:15 ` Herbert Xu
2020-01-22 10:15   ` Herbert Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.