Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3efb2511 authored by Tomasz Figa's avatar Tomasz Figa Committed by Kukjin Kim
Browse files

clk: samsung: Drop old suspend/resume code



Since all SoC drivers have been moved to local suspend/resume handling,
the old code can be safely dropped.

Signed-off-by: default avatarTomasz Figa <t.figa@samsung.com>
Acked-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Acked-by: default avatarHeiko Stuebner <heiko@sntech.de>
Reviewed-by: default avatarThomas Abraham <thomas.ab@samsung.com>
Reviewed-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 08c0d829
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1122,7 +1122,7 @@ static void __init exynos4_clk_init(struct device_node *np,
	if (!reg_base)
	if (!reg_base)
		panic("%s: failed to map registers\n", __func__);
		panic("%s: failed to map registers\n", __func__);


	samsung_clk_init(np, reg_base, CLK_NR_CLKS, NULL, 0, NULL, 0);
	samsung_clk_init(np, reg_base, CLK_NR_CLKS);


	samsung_clk_of_register_fixed_ext(exynos4_fixed_rate_ext_clks,
	samsung_clk_of_register_fixed_ext(exynos4_fixed_rate_ext_clks,
			ARRAY_SIZE(exynos4_fixed_rate_ext_clks),
			ARRAY_SIZE(exynos4_fixed_rate_ext_clks),
+1 −1
Original line number Original line Diff line number Diff line
@@ -694,7 +694,7 @@ static void __init exynos5250_clk_init(struct device_node *np)
		panic("%s: unable to determine soc\n", __func__);
		panic("%s: unable to determine soc\n", __func__);
	}
	}


	samsung_clk_init(np, reg_base, CLK_NR_CLKS, NULL, 0, NULL, 0);
	samsung_clk_init(np, reg_base, CLK_NR_CLKS);
	samsung_clk_of_register_fixed_ext(exynos5250_fixed_rate_ext_clks,
	samsung_clk_of_register_fixed_ext(exynos5250_fixed_rate_ext_clks,
			ARRAY_SIZE(exynos5250_fixed_rate_ext_clks),
			ARRAY_SIZE(exynos5250_fixed_rate_ext_clks),
			ext_clk_match);
			ext_clk_match);
+1 −1
Original line number Original line Diff line number Diff line
@@ -786,7 +786,7 @@ static void __init exynos5420_clk_init(struct device_node *np)
		panic("%s: unable to determine soc\n", __func__);
		panic("%s: unable to determine soc\n", __func__);
	}
	}


	samsung_clk_init(np, reg_base, CLK_NR_CLKS, NULL, 0, NULL, 0);
	samsung_clk_init(np, reg_base, CLK_NR_CLKS);
	samsung_clk_of_register_fixed_ext(exynos5420_fixed_rate_ext_clks,
	samsung_clk_of_register_fixed_ext(exynos5420_fixed_rate_ext_clks,
			ARRAY_SIZE(exynos5420_fixed_rate_ext_clks),
			ARRAY_SIZE(exynos5420_fixed_rate_ext_clks),
			ext_clk_match);
			ext_clk_match);
+1 −1
Original line number Original line Diff line number Diff line
@@ -101,7 +101,7 @@ static void __init exynos5440_clk_init(struct device_node *np)
		return;
		return;
	}
	}


	samsung_clk_init(np, reg_base, CLK_NR_CLKS, NULL, 0, NULL, 0);
	samsung_clk_init(np, reg_base, CLK_NR_CLKS);
	samsung_clk_of_register_fixed_ext(exynos5440_fixed_rate_ext_clks,
	samsung_clk_of_register_fixed_ext(exynos5440_fixed_rate_ext_clks,
		ARRAY_SIZE(exynos5440_fixed_rate_ext_clks), ext_clk_match);
		ARRAY_SIZE(exynos5440_fixed_rate_ext_clks), ext_clk_match);


+1 −1
Original line number Original line Diff line number Diff line
@@ -465,7 +465,7 @@ void __init s3c64xx_clk_init(struct device_node *np, unsigned long xtal_f,
			panic("%s: failed to map registers\n", __func__);
			panic("%s: failed to map registers\n", __func__);
	}
	}


	samsung_clk_init(np, reg_base, NR_CLKS, NULL, 0, NULL, 0);
	samsung_clk_init(np, reg_base, NR_CLKS);


	/* Register external clocks. */
	/* Register external clocks. */
	if (!np)
	if (!np)
Loading