Skip to content

Commit

Permalink
clk: samsung: exynos5250: Simplify registration of PLL rate tables
Browse files Browse the repository at this point in the history
Since the _get_rate() helper has been modified to use __clk_lookup()
internally, checking of PLL input rates can be done using it and so the
registration code can be simplified.

Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Tomasz Figa authored and Mike Turquette committed Sep 6, 2013
1 parent efb19a8 commit 22e9e75
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions drivers/clk/samsung/clk-exynos5250.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,6 @@ static struct of_device_id ext_clk_match[] __initdata = {
static void __init exynos5250_clk_init(struct device_node *np)
{
void __iomem *reg_base;
struct clk *vpllsrc;
unsigned long fin_pll_rate, mout_vpllsrc_rate = 0;

if (np) {
reg_base = of_iomap(np, 0);
Expand All @@ -563,16 +561,10 @@ static void __init exynos5250_clk_init(struct device_node *np)
samsung_clk_register_mux(exynos5250_pll_pmux_clks,
ARRAY_SIZE(exynos5250_pll_pmux_clks));

fin_pll_rate = _get_rate("fin_pll");

if (fin_pll_rate == 24 * MHZ)
if (_get_rate("fin_pll") == 24 * MHZ)
exynos5250_plls[epll].rate_table = epll_24mhz_tbl;

vpllsrc = __clk_lookup("mout_vpllsrc");
if (vpllsrc)
mout_vpllsrc_rate = clk_get_rate(vpllsrc);

if (mout_vpllsrc_rate == 24 * MHZ)
if (_get_rate("mout_vpllsrc") == 24 * MHZ)
exynos5250_plls[vpll].rate_table = vpll_24mhz_tbl;

samsung_clk_register_pll(exynos5250_plls, ARRAY_SIZE(exynos5250_plls),
Expand Down

0 comments on commit 22e9e75

Please sign in to comment.