linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing"
@ 2017-04-11 13:37 Colin King
  2017-04-12  9:41 ` Gregory CLEMENT
  2017-04-20 14:11 ` Ulf Hansson
  0 siblings, 2 replies; 4+ messages in thread
From: Colin King @ 2017-04-11 13:37 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd, Gregory CLEMENT,
	Thomas Petazzoni, Ulf Hansson, Russell King, Paul Gortmaker,
	Konstantin Porotchkin, linux-clk
  Cc: kernel-janitors, linux-kernel

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

trivial fix to spelling mistake in dev_warn message

Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/clk/mvebu/ap806-system-controller.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
index 103fe18a3c29..8155baccc98e 100644
--- a/drivers/clk/mvebu/ap806-system-controller.c
+++ b/drivers/clk/mvebu/ap806-system-controller.c
@@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
 					  4, &name)) {
 		ap806_clk_data.clk_num--;
 		dev_warn(&pdev->dev,
-			 "eMMC clock mising: update the device tree!\n");
+			 "eMMC clock missing: update the device tree!\n");
 	} else {
 		ap806_clks[4] = clk_register_fixed_factor(NULL, name,
 							  fixedclk_name,
-- 
2.11.0

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

* Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing"
  2017-04-11 13:37 [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Colin King
@ 2017-04-12  9:41 ` Gregory CLEMENT
  2017-04-12 16:59   ` Stephen Boyd
  2017-04-20 14:11 ` Ulf Hansson
  1 sibling, 1 reply; 4+ messages in thread
From: Gregory CLEMENT @ 2017-04-12  9:41 UTC (permalink / raw)
  To: Colin King
  Cc: Michael Turquette, Stephen Boyd, Thomas Petazzoni, Ulf Hansson,
	Russell King, Paul Gortmaker, Konstantin Porotchkin, linux-clk,
	kernel-janitors, linux-kernel

Hi Colin,
 
 On mar., avril 11 2017, Colin King <colin.king@canonical.com> wrote:

> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in dev_warn message
>
> Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>


The intial patch was merged through the mmc subsystem while it modifies
a clk driver. So I would suggest either Ulf applying it or waiting for
v4.12-rc1 to apply the patch through the clk subsystem.

Gregory

> ---
>  drivers/clk/mvebu/ap806-system-controller.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
> index 103fe18a3c29..8155baccc98e 100644
> --- a/drivers/clk/mvebu/ap806-system-controller.c
> +++ b/drivers/clk/mvebu/ap806-system-controller.c
> @@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
>  					  4, &name)) {
>  		ap806_clk_data.clk_num--;
>  		dev_warn(&pdev->dev,
> -			 "eMMC clock mising: update the device tree!\n");
> +			 "eMMC clock missing: update the device tree!\n");
>  	} else {
>  		ap806_clks[4] = clk_register_fixed_factor(NULL, name,
>  							  fixedclk_name,
> -- 
> 2.11.0
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing"
  2017-04-12  9:41 ` Gregory CLEMENT
@ 2017-04-12 16:59   ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2017-04-12 16:59 UTC (permalink / raw)
  To: Gregory CLEMENT
  Cc: Colin King, Michael Turquette, Thomas Petazzoni, Ulf Hansson,
	Russell King, Paul Gortmaker, Konstantin Porotchkin, linux-clk,
	kernel-janitors, linux-kernel

On 04/12, Gregory CLEMENT wrote:
> Hi Colin,
>  
>  On mar., avril 11 2017, Colin King <colin.king@canonical.com> wrote:
> 
> > From: Colin Ian King <colin.king@canonical.com>
> >
> > trivial fix to spelling mistake in dev_warn message
> >
> > Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> 
> 
> The intial patch was merged through the mmc subsystem while it modifies
> a clk driver. So I would suggest either Ulf applying it or waiting for
> v4.12-rc1 to apply the patch through the clk subsystem.
> 

In case Ulf wants to take it now

Acked-by: Stephen Boyd <sboyd@codeaurora.org>

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing"
  2017-04-11 13:37 [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Colin King
  2017-04-12  9:41 ` Gregory CLEMENT
@ 2017-04-20 14:11 ` Ulf Hansson
  1 sibling, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2017-04-20 14:11 UTC (permalink / raw)
  To: Colin King
  Cc: Michael Turquette, Stephen Boyd, Gregory CLEMENT,
	Thomas Petazzoni, Russell King, Paul Gortmaker,
	Konstantin Porotchkin, linux-clk, kernel-janitors, linux-kernel

On 11 April 2017 at 15:37, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in dev_warn message
>
> Fixes: f109ca864414dc ("clk: apn806: Turn the eMMC clock as optional for dts backwards compatible")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Thanks, applied for next at mmc tree!

Kind regards
Uffe

> ---
>  drivers/clk/mvebu/ap806-system-controller.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/mvebu/ap806-system-controller.c b/drivers/clk/mvebu/ap806-system-controller.c
> index 103fe18a3c29..8155baccc98e 100644
> --- a/drivers/clk/mvebu/ap806-system-controller.c
> +++ b/drivers/clk/mvebu/ap806-system-controller.c
> @@ -140,7 +140,7 @@ static int ap806_syscon_clk_probe(struct platform_device *pdev)
>                                           4, &name)) {
>                 ap806_clk_data.clk_num--;
>                 dev_warn(&pdev->dev,
> -                        "eMMC clock mising: update the device tree!\n");
> +                        "eMMC clock missing: update the device tree!\n");
>         } else {
>                 ap806_clks[4] = clk_register_fixed_factor(NULL, name,
>                                                           fixedclk_name,
> --
> 2.11.0
>

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

end of thread, other threads:[~2017-04-20 14:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-11 13:37 [PATCH] clk: apn806: fix spelling mistake: "mising" -> "missing" Colin King
2017-04-12  9:41 ` Gregory CLEMENT
2017-04-12 16:59   ` Stephen Boyd
2017-04-20 14:11 ` 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).