diff options
author | Thomas Abraham <thomas.ab@samsung.com> | 2010-10-01 23:45:25 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-10-20 18:54:55 -0400 |
commit | 658bf4bef844c9a15e6700e1e27c939529f4a5ca (patch) | |
tree | ac9fe1d842f8debc34d26b043fe8379e95ccfbb0 /arch/arm/plat-s5p | |
parent | 5aed1f706b01ab27a307cf9983b2ee28d7d88919 (diff) |
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: Jaecheol Lee <jc.lee@samsung.com>
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s5p')
-rw-r--r-- | arch/arm/plat-s5p/clock.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/plat-s5p/clock.c b/arch/arm/plat-s5p/clock.c index 8aaf4e6b60c3..818800962694 100644 --- a/arch/arm/plat-s5p/clock.c +++ b/arch/arm/plat-s5p/clock.c | |||
@@ -88,14 +88,6 @@ struct clk clk_fout_vpll = { | |||
88 | .ctrlbit = (1 << 31), | 88 | .ctrlbit = (1 << 31), |
89 | }; | 89 | }; |
90 | 90 | ||
91 | /* ARM clock */ | ||
92 | struct clk clk_arm = { | ||
93 | .name = "armclk", | ||
94 | .id = -1, | ||
95 | .rate = 0, | ||
96 | .ctrlbit = 0, | ||
97 | }; | ||
98 | |||
99 | /* Possible clock sources for APLL Mux */ | 91 | /* Possible clock sources for APLL Mux */ |
100 | static struct clk *clk_src_apll_list[] = { | 92 | static struct clk *clk_src_apll_list[] = { |
101 | [0] = &clk_fin_apll, | 93 | [0] = &clk_fin_apll, |
@@ -165,7 +157,6 @@ static struct clk *s5p_clks[] __initdata = { | |||
165 | &clk_fout_epll, | 157 | &clk_fout_epll, |
166 | &clk_fout_dpll, | 158 | &clk_fout_dpll, |
167 | &clk_fout_vpll, | 159 | &clk_fout_vpll, |
168 | &clk_arm, | ||
169 | &clk_vpll, | 160 | &clk_vpll, |
170 | &clk_xusbxti, | 161 | &clk_xusbxti, |
171 | }; | 162 | }; |