All of lore.kernel.org
 help / color / mirror / Atom feed
From: Corentin Labbe <clabbe.montjoie@gmail.com>
To: Colin King <colin.king@canonical.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
	Maxime Ripard <mripard@kernel.org>, Chen-Yu Tsai <wens@csie.org>,
	linux-crypto@vger.kernel.org,
	"David S . Miller" <davem@davemloft.net>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH][next][V2] crypto: allwinner: fix some spelling mistakes
Date: Tue, 05 Nov 2019 18:54:09 +0000	[thread overview]
Message-ID: <20191105185409.GA16603@Red> (raw)
In-Reply-To: <20191105150359.61379-1-colin.king@canonical.com>

On Tue, Nov 05, 2019 at 03:03:59PM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in dev_warn and dev_err messages. Fix these.
> Change "recommandation" to "recommendation" and "tryed" to "tried".
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> 
> V2: Fix "tryed"
> 
> ---
>  drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c | 4 ++--
>  drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> index 8e4eddbcc814..73a7649f915d 100644
> --- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> @@ -469,7 +469,7 @@ static int sun8i_ce_get_clks(struct sun8i_ce_dev *ce)
>  		}
>  		if (ce->variant->ce_clks[i].max_freq > 0 &&
>  		    cr > ce->variant->ce_clks[i].max_freq)
> -			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ce->variant->ce_clks[i].name, cr,
>  				 ce->variant->ce_clks[i].max_freq);
>  	}
> @@ -513,7 +513,7 @@ static int sun8i_ce_register_algs(struct sun8i_ce_dev *ce)
>  			break;
>  		default:
>  			ce_algs[i].ce = NULL;
> -			dev_err(ce->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ce->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> diff --git a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> index e58407ac256b..b90c2e6c1393 100644
> --- a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> @@ -446,7 +446,7 @@ static int sun8i_ss_register_algs(struct sun8i_ss_dev *ss)
>  			break;
>  		default:
>  			ss_algs[i].ss = NULL;
> -			dev_err(ss->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ss->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> @@ -502,7 +502,7 @@ static int sun8i_ss_get_clks(struct sun8i_ss_dev *ss)
>  		}
>  		if (ss->variant->ss_clks[i].max_freq > 0 &&
>  		    cr > ss->variant->ss_clks[i].max_freq)
> -			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ss->variant->ss_clks[i].name, cr,
>  				 ss->variant->ss_clks[i].max_freq);
>  	}
> -- 
> 2.20.1
> 

Acked-by: Corentin Labbe <clabbe.montjoie@gmail.com>

Thanks

WARNING: multiple messages have this Message-ID (diff)
From: Corentin Labbe <clabbe.montjoie@gmail.com>
To: Colin King <colin.king@canonical.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>,
	"David S . Miller" <davem@davemloft.net>,
	Maxime Ripard <mripard@kernel.org>, Chen-Yu Tsai <wens@csie.org>,
	linux-crypto@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH][next][V2] crypto: allwinner: fix some spelling mistakes
Date: Tue, 5 Nov 2019 19:54:09 +0100	[thread overview]
Message-ID: <20191105185409.GA16603@Red> (raw)
In-Reply-To: <20191105150359.61379-1-colin.king@canonical.com>

On Tue, Nov 05, 2019 at 03:03:59PM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in dev_warn and dev_err messages. Fix these.
> Change "recommandation" to "recommendation" and "tryed" to "tried".
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> 
> V2: Fix "tryed"
> 
> ---
>  drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c | 4 ++--
>  drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> index 8e4eddbcc814..73a7649f915d 100644
> --- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> @@ -469,7 +469,7 @@ static int sun8i_ce_get_clks(struct sun8i_ce_dev *ce)
>  		}
>  		if (ce->variant->ce_clks[i].max_freq > 0 &&
>  		    cr > ce->variant->ce_clks[i].max_freq)
> -			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ce->variant->ce_clks[i].name, cr,
>  				 ce->variant->ce_clks[i].max_freq);
>  	}
> @@ -513,7 +513,7 @@ static int sun8i_ce_register_algs(struct sun8i_ce_dev *ce)
>  			break;
>  		default:
>  			ce_algs[i].ce = NULL;
> -			dev_err(ce->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ce->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> diff --git a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> index e58407ac256b..b90c2e6c1393 100644
> --- a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> @@ -446,7 +446,7 @@ static int sun8i_ss_register_algs(struct sun8i_ss_dev *ss)
>  			break;
>  		default:
>  			ss_algs[i].ss = NULL;
> -			dev_err(ss->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ss->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> @@ -502,7 +502,7 @@ static int sun8i_ss_get_clks(struct sun8i_ss_dev *ss)
>  		}
>  		if (ss->variant->ss_clks[i].max_freq > 0 &&
>  		    cr > ss->variant->ss_clks[i].max_freq)
> -			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ss->variant->ss_clks[i].name, cr,
>  				 ss->variant->ss_clks[i].max_freq);
>  	}
> -- 
> 2.20.1
> 

Acked-by: Corentin Labbe <clabbe.montjoie@gmail.com>

Thanks

WARNING: multiple messages have this Message-ID (diff)
From: Corentin Labbe <clabbe.montjoie@gmail.com>
To: Colin King <colin.king@canonical.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
	Maxime Ripard <mripard@kernel.org>, Chen-Yu Tsai <wens@csie.org>,
	linux-crypto@vger.kernel.org,
	"David S . Miller" <davem@davemloft.net>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH][next][V2] crypto: allwinner: fix some spelling mistakes
Date: Tue, 5 Nov 2019 19:54:09 +0100	[thread overview]
Message-ID: <20191105185409.GA16603@Red> (raw)
In-Reply-To: <20191105150359.61379-1-colin.king@canonical.com>

On Tue, Nov 05, 2019 at 03:03:59PM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in dev_warn and dev_err messages. Fix these.
> Change "recommandation" to "recommendation" and "tryed" to "tried".
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> 
> V2: Fix "tryed"
> 
> ---
>  drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c | 4 ++--
>  drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> index 8e4eddbcc814..73a7649f915d 100644
> --- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
> @@ -469,7 +469,7 @@ static int sun8i_ce_get_clks(struct sun8i_ce_dev *ce)
>  		}
>  		if (ce->variant->ce_clks[i].max_freq > 0 &&
>  		    cr > ce->variant->ce_clks[i].max_freq)
> -			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ce->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ce->variant->ce_clks[i].name, cr,
>  				 ce->variant->ce_clks[i].max_freq);
>  	}
> @@ -513,7 +513,7 @@ static int sun8i_ce_register_algs(struct sun8i_ce_dev *ce)
>  			break;
>  		default:
>  			ce_algs[i].ce = NULL;
> -			dev_err(ce->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ce->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> diff --git a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> index e58407ac256b..b90c2e6c1393 100644
> --- a/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> +++ b/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> @@ -446,7 +446,7 @@ static int sun8i_ss_register_algs(struct sun8i_ss_dev *ss)
>  			break;
>  		default:
>  			ss_algs[i].ss = NULL;
> -			dev_err(ss->dev, "ERROR: tryed to register an unknown algo\n");
> +			dev_err(ss->dev, "ERROR: tried to register an unknown algo\n");
>  		}
>  	}
>  	return 0;
> @@ -502,7 +502,7 @@ static int sun8i_ss_get_clks(struct sun8i_ss_dev *ss)
>  		}
>  		if (ss->variant->ss_clks[i].max_freq > 0 &&
>  		    cr > ss->variant->ss_clks[i].max_freq)
> -			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommandation (%lu hz)",
> +			dev_warn(ss->dev, "Frequency for %s (%lu hz) is higher than datasheet's recommendation (%lu hz)",
>  				 ss->variant->ss_clks[i].name, cr,
>  				 ss->variant->ss_clks[i].max_freq);
>  	}
> -- 
> 2.20.1
> 

Acked-by: Corentin Labbe <clabbe.montjoie@gmail.com>

Thanks

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2019-11-05 18:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-05 15:03 [PATCH][next][V2] crypto: allwinner: fix some spelling mistakes Colin King
2019-11-05 15:03 ` Colin King
2019-11-05 15:03 ` Colin King
2019-11-05 18:54 ` Corentin Labbe [this message]
2019-11-05 18:54   ` Corentin Labbe
2019-11-05 18:54   ` Corentin Labbe
2019-11-15  6:05 ` Herbert Xu
2019-11-15  6:05   ` Herbert Xu
2019-11-15  6:05   ` Herbert Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191105185409.GA16603@Red \
    --to=clabbe.montjoie@gmail.com \
    --cc=colin.king@canonical.com \
    --cc=davem@davemloft.net \
    --cc=herbert@gondor.apana.org.au \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mripard@kernel.org \
    --cc=wens@csie.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.