All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] crypto: artpec6 - Fix printk warning on size_t/%d
@ 2022-09-16 10:35 Herbert Xu
  2022-09-16 10:51 ` Jesper Nilsson
  0 siblings, 1 reply; 2+ messages in thread
From: Herbert Xu @ 2022-09-16 10:35 UTC (permalink / raw)
  To: Linux Crypto Mailing List, Jesper Nilsson, Lars Persson,
	linux-arm-kernel

Switch to %zu instead of %d for printing size_t.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

diff --git a/drivers/crypto/axis/artpec6_crypto.c b/drivers/crypto/axis/artpec6_crypto.c
index b4820594ab80..51c66afbe677 100644
--- a/drivers/crypto/axis/artpec6_crypto.c
+++ b/drivers/crypto/axis/artpec6_crypto.c
@@ -1712,7 +1712,7 @@ static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq)
 		cipher_len = regk_crypto_key_256;
 		break;
 	default:
-		pr_err("%s: Invalid key length %d!\n",
+		pr_err("%s: Invalid key length %zu!\n",
 			MODULE_NAME, ctx->key_length);
 		return -EINVAL;
 	}
-- 
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 related	[flat|nested] 2+ messages in thread

* Re: [PATCH] crypto: artpec6 - Fix printk warning on size_t/%d
  2022-09-16 10:35 [PATCH] crypto: artpec6 - Fix printk warning on size_t/%d Herbert Xu
@ 2022-09-16 10:51 ` Jesper Nilsson
  0 siblings, 0 replies; 2+ messages in thread
From: Jesper Nilsson @ 2022-09-16 10:51 UTC (permalink / raw)
  To: Herbert Xu
  Cc: Linux Crypto Mailing List, Jesper Nilsson, Lars Persson,
	linux-arm-kernel

On Fri, Sep 16, 2022 at 12:35:50PM +0200, Herbert Xu wrote:
> Switch to %zu instead of %d for printing size_t.
> 
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Acked-by: Jesper Nilsson <jesper.nilsson@axis.com>

> diff --git a/drivers/crypto/axis/artpec6_crypto.c b/drivers/crypto/axis/artpec6_crypto.c
> index b4820594ab80..51c66afbe677 100644
> --- a/drivers/crypto/axis/artpec6_crypto.c
> +++ b/drivers/crypto/axis/artpec6_crypto.c
> @@ -1712,7 +1712,7 @@ static int artpec6_crypto_prepare_crypto(struct skcipher_request *areq)
>  		cipher_len = regk_crypto_key_256;
>  		break;
>  	default:
> -		pr_err("%s: Invalid key length %d!\n",
> +		pr_err("%s: Invalid key length %zu!\n",
>  			MODULE_NAME, ctx->key_length);
>  		return -EINVAL;
>  	}
> -- 
> 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

/^JN - Jesper Nilsson
-- 
               Jesper Nilsson -- jesper.nilsson@axis.com

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

end of thread, other threads:[~2022-09-16 11:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-16 10:35 [PATCH] crypto: artpec6 - Fix printk warning on size_t/%d Herbert Xu
2022-09-16 10:51 ` Jesper Nilsson

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.