linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c
@ 2021-03-17  9:14 Bhaskar Chowdhury
  2021-03-17  9:27 ` Antoine Tenart
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-17  9:14 UTC (permalink / raw)
  To: atenart, herbert, davem, linux-crypto, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/procesing/processing/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 drivers/crypto/inside-secure/safexcel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c
index 6364583b88b2..9ff885d50edf 100644
--- a/drivers/crypto/inside-secure/safexcel.c
+++ b/drivers/crypto/inside-secure/safexcel.c
@@ -688,7 +688,7 @@ static int safexcel_hw_init(struct safexcel_crypto_priv *priv)
 		/* Leave the DSE threads reset state */
 		writel(0, EIP197_HIA_DSE_THR(priv) + EIP197_HIA_DSE_THR_CTRL(pe));

-		/* Configure the procesing engine thresholds */
+		/* Configure the processing engine thresholds */
 		writel(EIP197_PE_OUT_DBUF_THRES_MIN(opbuflo) |
 		       EIP197_PE_OUT_DBUF_THRES_MAX(opbufhi),
 		       EIP197_PE(priv) + EIP197_PE_OUT_DBUF_THRES(pe));
--
2.30.2


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

* Re: [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c
  2021-03-17  9:14 [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c Bhaskar Chowdhury
@ 2021-03-17  9:27 ` Antoine Tenart
  2021-03-17 17:34 ` Randy Dunlap
  2021-03-26  9:31 ` Herbert Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Antoine Tenart @ 2021-03-17  9:27 UTC (permalink / raw)
  To: Bhaskar Chowdhury, davem, herbert, linux-crypto, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury

Quoting Bhaskar Chowdhury (2021-03-17 10:14:45)
> 
> s/procesing/processing/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Antoine Tenart <atenart@kernel.org>

Thanks,
Antoine

> ---
>  drivers/crypto/inside-secure/safexcel.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c
> index 6364583b88b2..9ff885d50edf 100644
> --- a/drivers/crypto/inside-secure/safexcel.c
> +++ b/drivers/crypto/inside-secure/safexcel.c
> @@ -688,7 +688,7 @@ static int safexcel_hw_init(struct safexcel_crypto_priv *priv)
>                 /* Leave the DSE threads reset state */
>                 writel(0, EIP197_HIA_DSE_THR(priv) + EIP197_HIA_DSE_THR_CTRL(pe));
> 
> -               /* Configure the procesing engine thresholds */
> +               /* Configure the processing engine thresholds */
>                 writel(EIP197_PE_OUT_DBUF_THRES_MIN(opbuflo) |
>                        EIP197_PE_OUT_DBUF_THRES_MAX(opbufhi),
>                        EIP197_PE(priv) + EIP197_PE_OUT_DBUF_THRES(pe));
> --
> 2.30.2
> 

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

* Re: [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c
  2021-03-17  9:14 [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c Bhaskar Chowdhury
  2021-03-17  9:27 ` Antoine Tenart
@ 2021-03-17 17:34 ` Randy Dunlap
  2021-03-26  9:31 ` Herbert Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2021-03-17 17:34 UTC (permalink / raw)
  To: Bhaskar Chowdhury, atenart, herbert, davem, linux-crypto, linux-kernel

On 3/17/21 2:14 AM, Bhaskar Chowdhury wrote:
> 
> s/procesing/processing/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  drivers/crypto/inside-secure/safexcel.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/crypto/inside-secure/safexcel.c b/drivers/crypto/inside-secure/safexcel.c
> index 6364583b88b2..9ff885d50edf 100644
> --- a/drivers/crypto/inside-secure/safexcel.c
> +++ b/drivers/crypto/inside-secure/safexcel.c
> @@ -688,7 +688,7 @@ static int safexcel_hw_init(struct safexcel_crypto_priv *priv)
>  		/* Leave the DSE threads reset state */
>  		writel(0, EIP197_HIA_DSE_THR(priv) + EIP197_HIA_DSE_THR_CTRL(pe));
> 
> -		/* Configure the procesing engine thresholds */
> +		/* Configure the processing engine thresholds */
>  		writel(EIP197_PE_OUT_DBUF_THRES_MIN(opbuflo) |
>  		       EIP197_PE_OUT_DBUF_THRES_MAX(opbufhi),
>  		       EIP197_PE(priv) + EIP197_PE_OUT_DBUF_THRES(pe));
> --


-- 
~Randy


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

* Re: [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c
  2021-03-17  9:14 [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c Bhaskar Chowdhury
  2021-03-17  9:27 ` Antoine Tenart
  2021-03-17 17:34 ` Randy Dunlap
@ 2021-03-26  9:31 ` Herbert Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2021-03-26  9:31 UTC (permalink / raw)
  To: Bhaskar Chowdhury; +Cc: atenart, davem, linux-crypto, linux-kernel, rdunlap

On Wed, Mar 17, 2021 at 02:44:45PM +0530, Bhaskar Chowdhury wrote:
> 
> s/procesing/processing/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>  drivers/crypto/inside-secure/safexcel.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] 4+ messages in thread

end of thread, other threads:[~2021-03-26  9:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  9:14 [PATCH] crypto: inside-secure: Minor typo fix in the file safexcel.c Bhaskar Chowdhury
2021-03-17  9:27 ` Antoine Tenart
2021-03-17 17:34 ` Randy Dunlap
2021-03-26  9:31 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).