All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
@ 2019-04-23 19:05 ` Leonard Crestez
  0 siblings, 0 replies; 8+ messages in thread
From: Leonard Crestez @ 2019-04-23 19:05 UTC (permalink / raw)
  To: Stephen Boyd, Michael Turquette, Shawn Guo
  Cc: Aisheng Dong, Fabio Estevam, Jacky Bai, kernel, dl-linux-imx,
	linux-clk, linux-arm-kernel

This looks like a copy-paste error. This string is not referenced
anywhere so it's safe to rename it.

Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
---
 drivers/clk/imx/clk-imx6sll.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/imx/clk-imx6sll.c b/drivers/clk/imx/clk-imx6sll.c
index 3bd2044cf25c..9def76df0879 100644
--- a/drivers/clk/imx/clk-imx6sll.c
+++ b/drivers/clk/imx/clk-imx6sll.c
@@ -266,11 +266,11 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node)
 	clks[IMX6SLL_CLK_EPIT1]		= imx_clk_gate2("epit1",	"perclk", base + 0x6c, 12);
 	clks[IMX6SLL_CLK_EPIT2]		= imx_clk_gate2("epit2",	"perclk", base + 0x6c, 14);
 	clks[IMX6SLL_CLK_GPT_BUS]	= imx_clk_gate2("gpt1_bus",	"perclk", base + 0x6c, 20);
 	clks[IMX6SLL_CLK_GPT_SERIAL]	= imx_clk_gate2("gpt1_serial",	"perclk", base + 0x6c, 22);
 	clks[IMX6SLL_CLK_UART4_IPG]	= imx_clk_gate2("uart4_ipg",	"ipg", base + 0x6c, 24);
-	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serail",	"uart_podf", base + 0x6c, 24);
+	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serial",	"uart_podf", base + 0x6c, 24);
 	clks[IMX6SLL_CLK_GPIO1]		= imx_clk_gate2("gpio1",	"ipg", base + 0x6c, 26);
 	clks[IMX6SLL_CLK_GPIO5]		= imx_clk_gate2("gpio5",	"ipg", base + 0x6c, 30);
 
 	/* CCGR2 */
 	clks[IMX6SLL_CLK_GPIO6]		= imx_clk_gate2("gpio6",	"ipg",    base + 0x70, 0);
-- 
2.17.1


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

* [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
@ 2019-04-23 19:05 ` Leonard Crestez
  0 siblings, 0 replies; 8+ messages in thread
From: Leonard Crestez @ 2019-04-23 19:05 UTC (permalink / raw)
  To: Stephen Boyd, Michael Turquette, Shawn Guo
  Cc: Aisheng Dong, Jacky Bai, dl-linux-imx, kernel, Fabio Estevam,
	linux-clk, linux-arm-kernel

This looks like a copy-paste error. This string is not referenced
anywhere so it's safe to rename it.

Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
---
 drivers/clk/imx/clk-imx6sll.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/imx/clk-imx6sll.c b/drivers/clk/imx/clk-imx6sll.c
index 3bd2044cf25c..9def76df0879 100644
--- a/drivers/clk/imx/clk-imx6sll.c
+++ b/drivers/clk/imx/clk-imx6sll.c
@@ -266,11 +266,11 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node)
 	clks[IMX6SLL_CLK_EPIT1]		= imx_clk_gate2("epit1",	"perclk", base + 0x6c, 12);
 	clks[IMX6SLL_CLK_EPIT2]		= imx_clk_gate2("epit2",	"perclk", base + 0x6c, 14);
 	clks[IMX6SLL_CLK_GPT_BUS]	= imx_clk_gate2("gpt1_bus",	"perclk", base + 0x6c, 20);
 	clks[IMX6SLL_CLK_GPT_SERIAL]	= imx_clk_gate2("gpt1_serial",	"perclk", base + 0x6c, 22);
 	clks[IMX6SLL_CLK_UART4_IPG]	= imx_clk_gate2("uart4_ipg",	"ipg", base + 0x6c, 24);
-	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serail",	"uart_podf", base + 0x6c, 24);
+	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serial",	"uart_podf", base + 0x6c, 24);
 	clks[IMX6SLL_CLK_GPIO1]		= imx_clk_gate2("gpio1",	"ipg", base + 0x6c, 26);
 	clks[IMX6SLL_CLK_GPIO5]		= imx_clk_gate2("gpio5",	"ipg", base + 0x6c, 30);
 
 	/* CCGR2 */
 	clks[IMX6SLL_CLK_GPIO6]		= imx_clk_gate2("gpio6",	"ipg",    base + 0x70, 0);
-- 
2.17.1

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

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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
  2019-04-23 19:05 ` Leonard Crestez
@ 2019-05-10  3:27   ` Shawn Guo
  -1 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2019-05-10  3:27 UTC (permalink / raw)
  To: Leonard Crestez
  Cc: Stephen Boyd, Michael Turquette, Aisheng Dong, Fabio Estevam,
	Jacky Bai, kernel, dl-linux-imx, linux-clk, linux-arm-kernel

On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> This looks like a copy-paste error. This string is not referenced
> anywhere so it's safe to rename it.
> 
> Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>

I see this keep coming, so have to ask you to fix your patch sender.
The base64 encoding makes it very difficult to apply patch.  I have done
manual applying for your patches a couple of times, and I thought that's
just accident.  It seems not.  Please fix and resend. 

Shawn

> ---
>  drivers/clk/imx/clk-imx6sll.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk-imx6sll.c b/drivers/clk/imx/clk-imx6sll.c
> index 3bd2044cf25c..9def76df0879 100644
> --- a/drivers/clk/imx/clk-imx6sll.c
> +++ b/drivers/clk/imx/clk-imx6sll.c
> @@ -266,11 +266,11 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node)
>  	clks[IMX6SLL_CLK_EPIT1]		= imx_clk_gate2("epit1",	"perclk", base + 0x6c, 12);
>  	clks[IMX6SLL_CLK_EPIT2]		= imx_clk_gate2("epit2",	"perclk", base + 0x6c, 14);
>  	clks[IMX6SLL_CLK_GPT_BUS]	= imx_clk_gate2("gpt1_bus",	"perclk", base + 0x6c, 20);
>  	clks[IMX6SLL_CLK_GPT_SERIAL]	= imx_clk_gate2("gpt1_serial",	"perclk", base + 0x6c, 22);
>  	clks[IMX6SLL_CLK_UART4_IPG]	= imx_clk_gate2("uart4_ipg",	"ipg", base + 0x6c, 24);
> -	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serail",	"uart_podf", base + 0x6c, 24);
> +	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serial",	"uart_podf", base + 0x6c, 24);
>  	clks[IMX6SLL_CLK_GPIO1]		= imx_clk_gate2("gpio1",	"ipg", base + 0x6c, 26);
>  	clks[IMX6SLL_CLK_GPIO5]		= imx_clk_gate2("gpio5",	"ipg", base + 0x6c, 30);
>  
>  	/* CCGR2 */
>  	clks[IMX6SLL_CLK_GPIO6]		= imx_clk_gate2("gpio6",	"ipg",    base + 0x70, 0);
> -- 
> 2.17.1
> 

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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
@ 2019-05-10  3:27   ` Shawn Guo
  0 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2019-05-10  3:27 UTC (permalink / raw)
  To: Leonard Crestez
  Cc: Aisheng Dong, Jacky Bai, Stephen Boyd, Michael Turquette,
	dl-linux-imx, kernel, Fabio Estevam, linux-clk, linux-arm-kernel

On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> This looks like a copy-paste error. This string is not referenced
> anywhere so it's safe to rename it.
> 
> Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>

I see this keep coming, so have to ask you to fix your patch sender.
The base64 encoding makes it very difficult to apply patch.  I have done
manual applying for your patches a couple of times, and I thought that's
just accident.  It seems not.  Please fix and resend. 

Shawn

> ---
>  drivers/clk/imx/clk-imx6sll.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk-imx6sll.c b/drivers/clk/imx/clk-imx6sll.c
> index 3bd2044cf25c..9def76df0879 100644
> --- a/drivers/clk/imx/clk-imx6sll.c
> +++ b/drivers/clk/imx/clk-imx6sll.c
> @@ -266,11 +266,11 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node)
>  	clks[IMX6SLL_CLK_EPIT1]		= imx_clk_gate2("epit1",	"perclk", base + 0x6c, 12);
>  	clks[IMX6SLL_CLK_EPIT2]		= imx_clk_gate2("epit2",	"perclk", base + 0x6c, 14);
>  	clks[IMX6SLL_CLK_GPT_BUS]	= imx_clk_gate2("gpt1_bus",	"perclk", base + 0x6c, 20);
>  	clks[IMX6SLL_CLK_GPT_SERIAL]	= imx_clk_gate2("gpt1_serial",	"perclk", base + 0x6c, 22);
>  	clks[IMX6SLL_CLK_UART4_IPG]	= imx_clk_gate2("uart4_ipg",	"ipg", base + 0x6c, 24);
> -	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serail",	"uart_podf", base + 0x6c, 24);
> +	clks[IMX6SLL_CLK_UART4_SERIAL]	= imx_clk_gate2("uart4_serial",	"uart_podf", base + 0x6c, 24);
>  	clks[IMX6SLL_CLK_GPIO1]		= imx_clk_gate2("gpio1",	"ipg", base + 0x6c, 26);
>  	clks[IMX6SLL_CLK_GPIO5]		= imx_clk_gate2("gpio5",	"ipg", base + 0x6c, 30);
>  
>  	/* CCGR2 */
>  	clks[IMX6SLL_CLK_GPIO6]		= imx_clk_gate2("gpio6",	"ipg",    base + 0x70, 0);
> -- 
> 2.17.1
> 

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

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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
  2019-05-10  3:27   ` Shawn Guo
@ 2019-05-10 17:37     ` Stephen Boyd
  -1 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2019-05-10 17:37 UTC (permalink / raw)
  To: Leonard Crestez, Shawn Guo
  Cc: Michael Turquette, Aisheng Dong, Fabio Estevam, Jacky Bai,
	kernel, dl-linux-imx, linux-clk, linux-arm-kernel

Quoting Shawn Guo (2019-05-09 20:27:47)
> On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> > This looks like a copy-paste error. This string is not referenced
> > anywhere so it's safe to rename it.
> > 
> > Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
> 
> I see this keep coming, so have to ask you to fix your patch sender.
> The base64 encoding makes it very difficult to apply patch.  I have done
> manual applying for your patches a couple of times, and I thought that's
> just accident.  It seems not.  Please fix and resend. 
> 

I already applied this one. Sorry, forgot to send the email.


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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
@ 2019-05-10 17:37     ` Stephen Boyd
  0 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2019-05-10 17:37 UTC (permalink / raw)
  To: Leonard Crestez, Shawn Guo
  Cc: Aisheng Dong, Jacky Bai, Michael Turquette, dl-linux-imx, kernel,
	Fabio Estevam, linux-clk, linux-arm-kernel

Quoting Shawn Guo (2019-05-09 20:27:47)
> On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> > This looks like a copy-paste error. This string is not referenced
> > anywhere so it's safe to rename it.
> > 
> > Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
> 
> I see this keep coming, so have to ask you to fix your patch sender.
> The base64 encoding makes it very difficult to apply patch.  I have done
> manual applying for your patches a couple of times, and I thought that's
> just accident.  It seems not.  Please fix and resend. 
> 

I already applied this one. Sorry, forgot to send the email.


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

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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
  2019-05-10 17:37     ` Stephen Boyd
@ 2019-05-12  1:07       ` Shawn Guo
  -1 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2019-05-12  1:07 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: Leonard Crestez, Michael Turquette, Aisheng Dong, Fabio Estevam,
	Jacky Bai, kernel, dl-linux-imx, linux-clk, linux-arm-kernel

On Fri, May 10, 2019 at 10:37:23AM -0700, Stephen Boyd wrote:
> Quoting Shawn Guo (2019-05-09 20:27:47)
> > On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> > > This looks like a copy-paste error. This string is not referenced
> > > anywhere so it's safe to rename it.
> > > 
> > > Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
> > 
> > I see this keep coming, so have to ask you to fix your patch sender.
> > The base64 encoding makes it very difficult to apply patch.  I have done
> > manual applying for your patches a couple of times, and I thought that's
> > just accident.  It seems not.  Please fix and resend. 
> > 
> 
> I already applied this one. Sorry, forgot to send the email.

No problem.  Thanks for notification.

Shawn

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

* Re: [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail
@ 2019-05-12  1:07       ` Shawn Guo
  0 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2019-05-12  1:07 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: Aisheng Dong, Jacky Bai, Michael Turquette, dl-linux-imx, kernel,
	Fabio Estevam, Leonard Crestez, linux-clk, linux-arm-kernel

On Fri, May 10, 2019 at 10:37:23AM -0700, Stephen Boyd wrote:
> Quoting Shawn Guo (2019-05-09 20:27:47)
> > On Tue, Apr 23, 2019 at 07:05:08PM +0000, Leonard Crestez wrote:
> > > This looks like a copy-paste error. This string is not referenced
> > > anywhere so it's safe to rename it.
> > > 
> > > Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
> > 
> > I see this keep coming, so have to ask you to fix your patch sender.
> > The base64 encoding makes it very difficult to apply patch.  I have done
> > manual applying for your patches a couple of times, and I thought that's
> > just accident.  It seems not.  Please fix and resend. 
> > 
> 
> I already applied this one. Sorry, forgot to send the email.

No problem.  Thanks for notification.

Shawn

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

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

end of thread, other threads:[~2019-05-12  1:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-23 19:05 [PATCH] clk: imx6sll: Fix mispelling uart4_serial as serail Leonard Crestez
2019-04-23 19:05 ` Leonard Crestez
2019-05-10  3:27 ` Shawn Guo
2019-05-10  3:27   ` Shawn Guo
2019-05-10 17:37   ` Stephen Boyd
2019-05-10 17:37     ` Stephen Boyd
2019-05-12  1:07     ` Shawn Guo
2019-05-12  1:07       ` Shawn Guo

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.