diff options
author | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-09-04 08:09:39 -0400 |
---|---|---|
committer | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-09-29 15:09:03 -0400 |
commit | f44089a7f41c88775428f09e90df8fb2b890058a (patch) | |
tree | bfddd3507a51380701cfc43f3457a77212855cb1 /drivers/clk/clk-vt8500.c | |
parent | f9e4a18de7398bc615f9d45250bdaf31eafc5af6 (diff) |
ARM: vt8500: prepare for arch-wide .init_time callback
Current vt8500 board init calls of_clk_init() from vtwm_clk_init. To allow
consolidation of DT driven .time_init, move of_clock_init() to a temporary
.time_init callback that will be removed when arch-wide callback is available.
With previous pmc_base parsing helper for vt8500 clock providers, we can also
safely remove the call to vtwm_clk_init() and get rid of some includes.
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Acked-by: Tony Prisk <linux@prisktech.co.nz>
Acked-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-vt8500.c')
-rw-r--r-- | drivers/clk/clk-vt8500.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/clk/clk-vt8500.c b/drivers/clk/clk-vt8500.c index 39fe72aab1e5..7fd5c5e9e25d 100644 --- a/drivers/clk/clk-vt8500.c +++ b/drivers/clk/clk-vt8500.c | |||
@@ -718,13 +718,3 @@ static void __init wm8850_pll_init(struct device_node *node) | |||
718 | vtwm_pll_clk_init(node, PLL_TYPE_WM8850); | 718 | vtwm_pll_clk_init(node, PLL_TYPE_WM8850); |
719 | } | 719 | } |
720 | CLK_OF_DECLARE(wm8850_pll, "wm,wm8850-pll-clock", wm8850_pll_init); | 720 | CLK_OF_DECLARE(wm8850_pll, "wm,wm8850-pll-clock", wm8850_pll_init); |
721 | |||
722 | void __init vtwm_clk_init(void __iomem *base) | ||
723 | { | ||
724 | if (!base) | ||
725 | return; | ||
726 | |||
727 | pmc_base = base; | ||
728 | |||
729 | of_clk_init(NULL); | ||
730 | } | ||