Commit 658bf4be authored by Thomas Abraham's avatar Thomas Abraham Committed by Kukjin Kim

ARM: S5P: Remove the unused clk_arm clock from plat-s5p

All the S5P series SoCs use the 'struct clksrc_clk' type to represent the
armclk. So the clk_arm clock instance available in the plat-s5p clock code
is not used in any of the S5P series SoCs.
This patch removes the unused clk_arm instance from plat-s5p clock code.
Reported-by: default avatarJaecheol Lee <jc.lee@samsung.com>
Signed-off-by: default avatarThomas Abraham <thomas.ab@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 5aed1f70
...@@ -88,14 +88,6 @@ struct clk clk_fout_vpll = { ...@@ -88,14 +88,6 @@ struct clk clk_fout_vpll = {
.ctrlbit = (1 << 31), .ctrlbit = (1 << 31),
}; };
/* ARM clock */
struct clk clk_arm = {
.name = "armclk",
.id = -1,
.rate = 0,
.ctrlbit = 0,
};
/* Possible clock sources for APLL Mux */ /* Possible clock sources for APLL Mux */
static struct clk *clk_src_apll_list[] = { static struct clk *clk_src_apll_list[] = {
[0] = &clk_fin_apll, [0] = &clk_fin_apll,
...@@ -165,7 +157,6 @@ static struct clk *s5p_clks[] __initdata = { ...@@ -165,7 +157,6 @@ static struct clk *s5p_clks[] __initdata = {
&clk_fout_epll, &clk_fout_epll,
&clk_fout_dpll, &clk_fout_dpll,
&clk_fout_vpll, &clk_fout_vpll,
&clk_arm,
&clk_vpll, &clk_vpll,
&clk_xusbxti, &clk_xusbxti,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment