Skip to content

Commit

Permalink
ARM: clk-imx35: fix name for ckil clk
Browse files Browse the repository at this point in the history
This fixes
	[    0.000000] i.MX clk 82: register failed with -17
because the name is duplicated.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fixes: 3713e3f ("clk: imx35: define two clocks for rtc")
Acked-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Uwe Kleine-König authored and Stephen Boyd committed Sep 14, 2016
1 parent 0d5aa65 commit fcff038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/imx/clk-imx35.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static void __init _mx35_clocks_init(void)
}

clk[ckih] = imx_clk_fixed("ckih", 24000000);
clk[ckil] = imx_clk_fixed("ckih", 32768);
clk[ckil] = imx_clk_fixed("ckil", 32768);
clk[mpll] = imx_clk_pllv1(IMX_PLLV1_IMX35, "mpll", "ckih", base + MX35_CCM_MPCTL);
clk[ppll] = imx_clk_pllv1(IMX_PLLV1_IMX35, "ppll", "ckih", base + MX35_CCM_PPCTL);

Expand Down

0 comments on commit fcff038

Please sign in to comment.