clk: renesas: r8a7795: Constify r8a7795_*_clks
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sun, 17 Sep 2023 09:58:32 +0000 (11:58 +0200)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 26 Sep 2023 07:38:00 +0000 (09:38 +0200)
Make r8a7795_core_clks and r8a7795_mod_clks arrays const and align them
with the other clock tables in other *cpg-mssr.c . No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20230917095832.39007-1-marek.vasut+renesas@mailbox.org
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/clk/renesas/r8a7795-cpg-mssr.c

index ad20b3301ef6008a9fa6ffcbdda2005b21b3ab8b..e47d9b1fcc0ab3b93627ebc87e4b0c0f7d3a9cfb 100644 (file)
@@ -51,7 +51,7 @@ enum clk_ids {
        MOD_CLK_BASE
 };
 
-static struct cpg_core_clk r8a7795_core_clks[] __initdata = {
+static const struct cpg_core_clk r8a7795_core_clks[] __initconst = {
        /* External Clock Inputs */
        DEF_INPUT("extal",      CLK_EXTAL),
        DEF_INPUT("extalr",     CLK_EXTALR),
@@ -128,7 +128,7 @@ static struct cpg_core_clk r8a7795_core_clks[] __initdata = {
        DEF_BASE("r",           R8A7795_CLK_R,     CLK_TYPE_GEN3_R, CLK_RINT),
 };
 
-static struct mssr_mod_clk r8a7795_mod_clks[] __initdata = {
+static const struct mssr_mod_clk r8a7795_mod_clks[] __initconst = {
        DEF_MOD("3dge",                  112,   R8A7795_CLK_ZG),
        DEF_MOD("fdp1-1",                118,   R8A7795_CLK_S0D1),
        DEF_MOD("fdp1-0",                119,   R8A7795_CLK_S0D1),