diff options
author | Vipul Kumar Samar <vipulkumar.samar@st.com> | 2012-07-10 17:12:46 +0530 |
---|---|---|
committer | Shiraz Hashim <shiraz.hashim@st.com> | 2012-07-18 10:04:42 +0530 |
commit | a8f4bf0eb4ca7a0a578079fb5807e59b7111a1e2 (patch) | |
tree | f105486f3be03f9163b480ea0cc6240b5dde3922 /arch/arm/mach-spear6xx | |
parent | 5cfc545f50c4b6c0800e578b51019f2ecf490f1e (diff) | |
download | op-kernel-dev-a8f4bf0eb4ca7a0a578079fb5807e59b7111a1e2.zip op-kernel-dev-a8f4bf0eb4ca7a0a578079fb5807e59b7111a1e2.tar.gz |
Clk:spear6xx:Fix: Rename clk ids within predefined limit
The max limit of con_id is 16 and dev_id is 20. As of now for spear6xx, many clk
ids are exceeding this predefined limit.
This patch is intended to rename clk ids like:
mux_clk -> _mclk
gate_clk -> _gclk
synth_clk -> syn_clk
ras_gen1_synth_gate_clk -> ras_syn1_gclk
pll3_48m -> pll3_
Signed-off-by: Vipul Kumar Samar <vipulkumar.samar@st.com>
Signed-off-by: Shiraz Hashim <shiraz.hashim@st.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-spear6xx')
-rw-r--r-- | arch/arm/mach-spear6xx/spear6xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-spear6xx/spear6xx.c b/arch/arm/mach-spear6xx/spear6xx.c index 2e2e359..9af67d0 100644 --- a/arch/arm/mach-spear6xx/spear6xx.c +++ b/arch/arm/mach-spear6xx/spear6xx.c @@ -423,7 +423,7 @@ void __init spear6xx_map_io(void) static void __init spear6xx_timer_init(void) { - char pclk_name[] = "pll3_48m_clk"; + char pclk_name[] = "pll3_clk"; struct clk *gpt_clk, *pclk; spear6xx_clk_init(); |