Commit c6415963 authored by Tomasz Figa's avatar Tomasz Figa Committed by Mike Turquette

clk: samsung: exynos4: Rename exynos4_plls to exynos4x12_plls

This array defines PLLs specific to Exynos 4x12 SoCs and not for all
Exynos 4 SoCs, so the name should represent that.
Signed-off-by: default avatarTomasz Figa <t.figa@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Reviewed-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent 336c18bd
...@@ -984,7 +984,7 @@ static struct of_device_id ext_clk_match[] __initdata = { ...@@ -984,7 +984,7 @@ static struct of_device_id ext_clk_match[] __initdata = {
{}, {},
}; };
static struct samsung_pll_clock exynos4_plls[nr_plls] __initdata = { static struct samsung_pll_clock exynos4x12_plls[nr_plls] __initdata = {
[apll] = PLL(pll_35xx, fout_apll, "fout_apll", "fin_pll", [apll] = PLL(pll_35xx, fout_apll, "fout_apll", "fin_pll",
APLL_LOCK, APLL_CON0, NULL), APLL_LOCK, APLL_CON0, NULL),
[mpll] = PLL(pll_35xx, fout_mpll, "fout_mpll", "fin_pll", [mpll] = PLL(pll_35xx, fout_mpll, "fout_mpll", "fin_pll",
...@@ -1036,8 +1036,8 @@ static void __init exynos4_clk_init(struct device_node *np, ...@@ -1036,8 +1036,8 @@ static void __init exynos4_clk_init(struct device_node *np,
samsung_clk_add_lookup(epll, fout_epll); samsung_clk_add_lookup(epll, fout_epll);
samsung_clk_add_lookup(vpll, fout_vpll); samsung_clk_add_lookup(vpll, fout_vpll);
} else { } else {
samsung_clk_register_pll(exynos4_plls, samsung_clk_register_pll(exynos4x12_plls,
ARRAY_SIZE(exynos4_plls), reg_base); ARRAY_SIZE(exynos4x12_plls), reg_base);
} }
samsung_clk_register_fixed_rate(exynos4_fixed_rate_clks, samsung_clk_register_fixed_rate(exynos4_fixed_rate_clks,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment