From: Alim Akhtar Date: Thu, 10 Sep 2015 08:44:36 +0000 (+0530) Subject: clk: samsung: exynos7: Add missing fixed_clks to cmu_info X-Git-Tag: v4.4-rc1~115^2~46^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad108e10ae3ce6bc68eb89e788296a3c40801482;p=platform%2Fkernel%2Flinux-exynos.git clk: samsung: exynos7: Add missing fixed_clks to cmu_info FSYS0 fixed clocks are not added to fsys0_cmu_info, this makes some of the usb clocks orphans. This fixes the same. Signed-off-by: Alim Akhtar Reviewed-by: Krzysztof Kozlowski Signed-off-by: Sylwester Nawrocki --- diff --git a/drivers/clk/samsung/clk-exynos7.c b/drivers/clk/samsung/clk-exynos7.c index 5cc6844..04275ef 100644 --- a/drivers/clk/samsung/clk-exynos7.c +++ b/drivers/clk/samsung/clk-exynos7.c @@ -934,6 +934,8 @@ static struct samsung_gate_clock fsys0_gate_clks[] __initdata = { }; static struct samsung_cmu_info fsys0_cmu_info __initdata = { + .fixed_clks = fixed_rate_clks_fsys0, + .nr_fixed_clks = ARRAY_SIZE(fixed_rate_clks_fsys0), .mux_clks = fsys0_mux_clks, .nr_mux_clks = ARRAY_SIZE(fsys0_mux_clks), .gate_clks = fsys0_gate_clks,