diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-05-11 08:12:16 -0400 |
---|---|---|
committer | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2016-06-02 05:18:14 -0400 |
commit | 334393366f3a68f5645b3ec9cfb7abad7e634e01 (patch) | |
tree | bfffae1f66f95b32c9e73e0810128612cae6c277 /drivers/clk/samsung | |
parent | 4dbf01b8df00864787b6c7e3d3e0890d385b0ff5 (diff) |
clk: samsung: exynos3250: Move PLL rates data to init section
The arrays with initialization data of PLLs can be moved to initconst
section because they are referenced only from other initconst-level
symbols.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Diffstat (limited to 'drivers/clk/samsung')
-rw-r--r-- | drivers/clk/samsung/clk-exynos3250.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/samsung/clk-exynos3250.c b/drivers/clk/samsung/clk-exynos3250.c index 057c3f0d0e35..b2513959252d 100644 --- a/drivers/clk/samsung/clk-exynos3250.c +++ b/drivers/clk/samsung/clk-exynos3250.c | |||
@@ -669,7 +669,7 @@ static const struct samsung_gate_clock gate_clks[] __initconst = { | |||
669 | }; | 669 | }; |
670 | 670 | ||
671 | /* APLL & MPLL & BPLL & UPLL */ | 671 | /* APLL & MPLL & BPLL & UPLL */ |
672 | static const struct samsung_pll_rate_table exynos3250_pll_rates[] = { | 672 | static const struct samsung_pll_rate_table exynos3250_pll_rates[] __initconst = { |
673 | PLL_35XX_RATE(1200000000, 400, 4, 1), | 673 | PLL_35XX_RATE(1200000000, 400, 4, 1), |
674 | PLL_35XX_RATE(1100000000, 275, 3, 1), | 674 | PLL_35XX_RATE(1100000000, 275, 3, 1), |
675 | PLL_35XX_RATE(1066000000, 533, 6, 1), | 675 | PLL_35XX_RATE(1066000000, 533, 6, 1), |
@@ -691,7 +691,7 @@ static const struct samsung_pll_rate_table exynos3250_pll_rates[] = { | |||
691 | }; | 691 | }; |
692 | 692 | ||
693 | /* EPLL */ | 693 | /* EPLL */ |
694 | static const struct samsung_pll_rate_table exynos3250_epll_rates[] = { | 694 | static const struct samsung_pll_rate_table exynos3250_epll_rates[] __initconst = { |
695 | PLL_36XX_RATE(800000000, 200, 3, 1, 0), | 695 | PLL_36XX_RATE(800000000, 200, 3, 1, 0), |
696 | PLL_36XX_RATE(288000000, 96, 2, 2, 0), | 696 | PLL_36XX_RATE(288000000, 96, 2, 2, 0), |
697 | PLL_36XX_RATE(192000000, 128, 2, 3, 0), | 697 | PLL_36XX_RATE(192000000, 128, 2, 3, 0), |