[PATCH 09/18] ARM: vf610: clk: add suspend/resume support
From: shawnguo@kernel.org (Shawn Guo)
Date: 2016-03-31 11:40:13
Also in:
linux-clk, linux-devicetree, lkml
From: shawnguo@kernel.org (Shawn Guo)
Date: 2016-03-31 11:40:13
Also in:
linux-clk, linux-devicetree, lkml
On Wed, Mar 09, 2016 at 06:16:50PM -0800, Stefan Agner wrote:
@@ -414,9 +460,12 @@ static void __init vf610_clocks_init(struct device_node *ccm_node) for (i = 0; i < ARRAY_SIZE(clks_init_on); i++) clk_prepare_enable(clk[clks_init_on[i]]); + register_syscore_ops(&vf610_clk_syscore_ops); + /* Add the clocks to provider list */ clk_data.clks = clk; clk_data.clk_num = ARRAY_SIZE(clk); of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data); } CLK_OF_DECLARE(vf610, "fsl,vf610-ccm", vf610_clocks_init); +
This is an unrelated change and brings in an 'new blank line at EOF' warning. I dropped it when applying the patch. Shawn