linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral"
@ 2016-06-23  9:52 Colin King
  2016-06-23 10:38 ` Adrian Hunter
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Colin King @ 2016-06-23  9:52 UTC (permalink / raw)
  To: Adrian Hunter, Ulf Hansson, linux-mmc; +Cc: linux-kernel

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

trivial fix to spelling mistake in dev_err message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/mmc/host/sdhci-msm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c
index 0653fe7..343e4bd 100644
--- a/drivers/mmc/host/sdhci-msm.c
+++ b/drivers/mmc/host/sdhci-msm.c
@@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev)
 	msm_host->pclk = devm_clk_get(&pdev->dev, "iface");
 	if (IS_ERR(msm_host->pclk)) {
 		ret = PTR_ERR(msm_host->pclk);
-		dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret);
+		dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret);
 		goto bus_clk_disable;
 	}
 
-- 
2.8.1

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

* Re: [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral"
  2016-06-23  9:52 [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral" Colin King
@ 2016-06-23 10:38 ` Adrian Hunter
  2016-06-23 11:39 ` Joe Perches
  2016-06-27  9:21 ` Ulf Hansson
  2 siblings, 0 replies; 5+ messages in thread
From: Adrian Hunter @ 2016-06-23 10:38 UTC (permalink / raw)
  To: Colin King, Ulf Hansson, linux-mmc; +Cc: linux-kernel

On 23/06/16 12:52, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> trivial fix to spelling mistake in dev_err message
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  drivers/mmc/host/sdhci-msm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c
> index 0653fe7..343e4bd 100644
> --- a/drivers/mmc/host/sdhci-msm.c
> +++ b/drivers/mmc/host/sdhci-msm.c
> @@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev)
>  	msm_host->pclk = devm_clk_get(&pdev->dev, "iface");
>  	if (IS_ERR(msm_host->pclk)) {
>  		ret = PTR_ERR(msm_host->pclk);
> -		dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret);
> +		dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret);
>  		goto bus_clk_disable;
>  	}
>  
> 

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

* Re: [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral"
  2016-06-23  9:52 [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral" Colin King
  2016-06-23 10:38 ` Adrian Hunter
@ 2016-06-23 11:39 ` Joe Perches
  2016-06-23 11:59   ` Colin Ian King
  2016-06-27  9:21 ` Ulf Hansson
  2 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2016-06-23 11:39 UTC (permalink / raw)
  To: Colin King, Adrian Hunter, Ulf Hansson, linux-mmc; +Cc: linux-kernel

On Thu, 2016-06-23 at 10:52 +0100, Colin King wrote:
> trivial fix to spelling mistake in dev_err message

Hello Colin.

You are submitting a lot of these recently.

Are you using a tool to find these?

If you are, maybe publish it to the janitorial
and newbies list so others can do the work.

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

* Re: [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral"
  2016-06-23 11:39 ` Joe Perches
@ 2016-06-23 11:59   ` Colin Ian King
  0 siblings, 0 replies; 5+ messages in thread
From: Colin Ian King @ 2016-06-23 11:59 UTC (permalink / raw)
  To: Joe Perches, Adrian Hunter, Ulf Hansson, linux-mmc; +Cc: linux-kernel

On 23/06/16 12:39, Joe Perches wrote:
> On Thu, 2016-06-23 at 10:52 +0100, Colin King wrote:
>> trivial fix to spelling mistake in dev_err message
> 
> Hello Colin.
> 
> You are submitting a lot of these recently.
> 
> Are you using a tool to find these?

basically spell on some fancy kernel printk scraping, it's a bit of a
lash up - I ended up with > 30K of possible candidates and when I'm
waiting for builds or tests to complete I work my way through the list,
so it's not very automated ;-)

> 
> If you are, maybe publish it to the janitorial
> and newbies list so others can do the work.
> 

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

* Re: [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral"
  2016-06-23  9:52 [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral" Colin King
  2016-06-23 10:38 ` Adrian Hunter
  2016-06-23 11:39 ` Joe Perches
@ 2016-06-27  9:21 ` Ulf Hansson
  2 siblings, 0 replies; 5+ messages in thread
From: Ulf Hansson @ 2016-06-27  9:21 UTC (permalink / raw)
  To: Colin King; +Cc: Adrian Hunter, linux-mmc, linux-kernel

On 23 June 2016 at 11:52, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in dev_err message
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/host/sdhci-msm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c
> index 0653fe7..343e4bd 100644
> --- a/drivers/mmc/host/sdhci-msm.c
> +++ b/drivers/mmc/host/sdhci-msm.c
> @@ -473,7 +473,7 @@ static int sdhci_msm_probe(struct platform_device *pdev)
>         msm_host->pclk = devm_clk_get(&pdev->dev, "iface");
>         if (IS_ERR(msm_host->pclk)) {
>                 ret = PTR_ERR(msm_host->pclk);
> -               dev_err(&pdev->dev, "Perpheral clk setup failed (%d)\n", ret);
> +               dev_err(&pdev->dev, "Peripheral clk setup failed (%d)\n", ret);
>                 goto bus_clk_disable;
>         }
>
> --
> 2.8.1
>

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

end of thread, other threads:[~2016-06-27  9:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-23  9:52 [PATCH] mmc: sdhci-msm: fix spelling mistake: "Perpheral" -> "Peripheral" Colin King
2016-06-23 10:38 ` Adrian Hunter
2016-06-23 11:39 ` Joe Perches
2016-06-23 11:59   ` Colin Ian King
2016-06-27  9:21 ` Ulf Hansson

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).