* [PATCH] ARM: i.MX6Q clocks: Fix CKIH clock name
@ 2013-07-27 6:56 Alexander Shiyan
2013-07-29 8:07 ` Dirk Behme
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Shiyan @ 2013-07-27 6:56 UTC (permalink / raw)
To: linux-arm-kernel
i.MX6Q have only one High-frequency reference clock (CKIH).
Patch removes index from CKIH and makes name according datasheet.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/mach-imx/clk-imx6q.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
index 9181a24..8f2a8b5 100644
--- a/arch/arm/mach-imx/clk-imx6q.c
+++ b/arch/arm/mach-imx/clk-imx6q.c
@@ -292,7 +292,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
clk[dummy] = imx_clk_fixed("dummy", 0);
clk[ckil] = imx_obtain_fixed_clock("ckil", 0);
- clk[ckih] = imx_obtain_fixed_clock("ckih1", 0);
+ clk[ckih] = imx_obtain_fixed_clock("ckih", 0);
clk[osc] = imx_obtain_fixed_clock("osc", 0);
np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
--
1.8.1.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] ARM: i.MX6Q clocks: Fix CKIH clock name
2013-07-27 6:56 [PATCH] ARM: i.MX6Q clocks: Fix CKIH clock name Alexander Shiyan
@ 2013-07-29 8:07 ` Dirk Behme
2013-07-29 15:42 ` Alexander Shiyan
0 siblings, 1 reply; 3+ messages in thread
From: Dirk Behme @ 2013-07-29 8:07 UTC (permalink / raw)
To: linux-arm-kernel
On 27.07.2013 08:56, Alexander Shiyan wrote:
> i.MX6Q have only one High-frequency reference clock (CKIH).
> Patch removes index from CKIH and makes name according datasheet.
>
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
> arch/arm/mach-imx/clk-imx6q.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
> index 9181a24..8f2a8b5 100644
> --- a/arch/arm/mach-imx/clk-imx6q.c
> +++ b/arch/arm/mach-imx/clk-imx6q.c
> @@ -292,7 +292,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
>
> clk[dummy] = imx_clk_fixed("dummy", 0);
> clk[ckil] = imx_obtain_fixed_clock("ckil", 0);
> - clk[ckih] = imx_obtain_fixed_clock("ckih1", 0);
> + clk[ckih] = imx_obtain_fixed_clock("ckih", 0);
> clk[osc] = imx_obtain_fixed_clock("osc", 0);
>
> np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
Just for my understanding: This is a cosmetic change, only? And doesn't
change any functionality? Correct?
Thanks,
Dirk
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ARM: i.MX6Q clocks: Fix CKIH clock name
2013-07-29 8:07 ` Dirk Behme
@ 2013-07-29 15:42 ` Alexander Shiyan
0 siblings, 0 replies; 3+ messages in thread
From: Alexander Shiyan @ 2013-07-29 15:42 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 29 Jul 2013 10:07:45 +0200
Dirk Behme <dirk.behme@de.bosch.com> wrote:
> On 27.07.2013 08:56, Alexander Shiyan wrote:
> > i.MX6Q have only one High-frequency reference clock (CKIH).
> > Patch removes index from CKIH and makes name according datasheet.
> >
> > Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> > ---
> > arch/arm/mach-imx/clk-imx6q.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
> > index 9181a24..8f2a8b5 100644
> > --- a/arch/arm/mach-imx/clk-imx6q.c
> > +++ b/arch/arm/mach-imx/clk-imx6q.c
> > @@ -292,7 +292,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
> >
> > clk[dummy] = imx_clk_fixed("dummy", 0);
> > clk[ckil] = imx_obtain_fixed_clock("ckil", 0);
> > - clk[ckih] = imx_obtain_fixed_clock("ckih1", 0);
> > + clk[ckih] = imx_obtain_fixed_clock("ckih", 0);
> > clk[osc] = imx_obtain_fixed_clock("osc", 0);
> >
> > np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
>
> Just for my understanding: This is a cosmetic change, only? And doesn't
> change any functionality? Correct?
Yes, but in any case this is an incomplete patch, because I forgot to change
the relevant DTS.
--
Alexander Shiyan <shc_work@mail.ru>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-29 15:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-27 6:56 [PATCH] ARM: i.MX6Q clocks: Fix CKIH clock name Alexander Shiyan
2013-07-29 8:07 ` Dirk Behme
2013-07-29 15:42 ` Alexander Shiyan
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).