* [PATCH 1/2] ARM: shmobile: koelsch: Annotate clk_names with __initconst
2014-03-13 6:29 [PATCH 0/2] ARM: shmobile: koelsch, lager: Annotate clk_names with __initconst Simon Horman
@ 2014-03-13 6:29 ` Simon Horman
2014-03-13 6:29 ` [PATCH 2/2] ARM: shmobile: lager: " Simon Horman
2014-03-13 8:28 ` [PATCH 0/2] ARM: shmobile: koelsch, " Geert Uytterhoeven
2 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-03-13 6:29 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/mach-shmobile/board-koelsch-reference.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-shmobile/board-koelsch-reference.c b/arch/arm/mach-shmobile/board-koelsch-reference.c
index a760f7f..1e6a436 100644
--- a/arch/arm/mach-shmobile/board-koelsch-reference.c
+++ b/arch/arm/mach-shmobile/board-koelsch-reference.c
@@ -85,7 +85,7 @@ static void __init koelsch_add_du_device(void)
* This is a really crude hack to provide clkdev support to platform
* devices until they get moved to DT.
*/
-static const struct clk_name clk_names[] = {
+static const struct clk_name clk_names[] __initconst = {
{ "cmt0", NULL, "sh_cmt.0" },
{ "scifa0", NULL, "sh-sci.0" },
{ "scifa1", NULL, "sh-sci.1" },
--
1.8.5.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] ARM: shmobile: lager: Annotate clk_names with __initconst
2014-03-13 6:29 [PATCH 0/2] ARM: shmobile: koelsch, lager: Annotate clk_names with __initconst Simon Horman
2014-03-13 6:29 ` [PATCH 1/2] ARM: shmobile: koelsch: " Simon Horman
@ 2014-03-13 6:29 ` Simon Horman
2014-03-13 8:28 ` [PATCH 0/2] ARM: shmobile: koelsch, " Geert Uytterhoeven
2 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-03-13 6:29 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/mach-shmobile/board-lager-reference.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-shmobile/board-lager-reference.c b/arch/arm/mach-shmobile/board-lager-reference.c
index c76248b..7ff395e 100644
--- a/arch/arm/mach-shmobile/board-lager-reference.c
+++ b/arch/arm/mach-shmobile/board-lager-reference.c
@@ -89,7 +89,7 @@ static void __init lager_add_du_device(void)
* This is a really crude hack to provide clkdev support to platform
* devices until they get moved to DT.
*/
-static const struct clk_name clk_names[] = {
+static const struct clk_name clk_names[] __initconst = {
{ "cmt0", NULL, "sh_cmt.0" },
{ "scifa0", NULL, "sh-sci.0" },
{ "scifa1", NULL, "sh-sci.1" },
--
1.8.5.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 0/2] ARM: shmobile: koelsch, lager: Annotate clk_names with __initconst
2014-03-13 6:29 [PATCH 0/2] ARM: shmobile: koelsch, lager: Annotate clk_names with __initconst Simon Horman
2014-03-13 6:29 ` [PATCH 1/2] ARM: shmobile: koelsch: " Simon Horman
2014-03-13 6:29 ` [PATCH 2/2] ARM: shmobile: lager: " Simon Horman
@ 2014-03-13 8:28 ` Geert Uytterhoeven
2014-03-14 0:28 ` Simon Horman
2 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-03-13 8:28 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Mar 13, 2014 at 7:29 AM, Simon Horman
<horms+renesas@verge.net.au> wrote:
> Add __initconst annotations to recently added clk_names.
>
> Depends on
> "[PATCH v2 00/03] ARM: shmobile: Break out and extend clock workaround V2"
>
> Simon Horman (2):
> ARM: shmobile: koelsch: Annotate clk_names with __initconst
> ARM: shmobile: lager: Annotate clk_names with __initconst
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 0/2] ARM: shmobile: koelsch, lager: Annotate clk_names with __initconst
2014-03-13 8:28 ` [PATCH 0/2] ARM: shmobile: koelsch, " Geert Uytterhoeven
@ 2014-03-14 0:28 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-03-14 0:28 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Mar 13, 2014 at 09:28:23AM +0100, Geert Uytterhoeven wrote:
> On Thu, Mar 13, 2014 at 7:29 AM, Simon Horman
> <horms+renesas@verge.net.au> wrote:
> > Add __initconst annotations to recently added clk_names.
> >
> > Depends on
> > "[PATCH v2 00/03] ARM: shmobile: Break out and extend clock workaround V2"
> >
> > Simon Horman (2):
> > ARM: shmobile: koelsch: Annotate clk_names with __initconst
> > ARM: shmobile: lager: Annotate clk_names with __initconst
>
> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Thanks, I will queue these up.
^ permalink raw reply [flat|nested] 5+ messages in thread