aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/clock.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-05-13 03:59:40 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-05-13 03:59:40 -0400
commitaf777ce42d3d51cdef353ce296d6f99dc503feef (patch)
treed0f1f8d9b485da129b0298fd0d74ab8c829884e0 /arch/sh/kernel/cpu/clock.c
parentfd5b12458b25a88eb6f6b56464846d98a45e8928 (diff)
sh: clkfwk: module_clk -> peripheral_clk rename.
For consistenct naming, and to allow us to fix up some confusion in the SH-Mobile clock framework, amongst other places. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/clock.c')
-rw-r--r--arch/sh/kernel/cpu/clock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c
index 61ff227561dc..0eedf9392647 100644
--- a/arch/sh/kernel/cpu/clock.c
+++ b/arch/sh/kernel/cpu/clock.c
@@ -50,8 +50,8 @@ static struct clk master_clk = {
50 .rate = CONFIG_SH_PCLK_FREQ, 50 .rate = CONFIG_SH_PCLK_FREQ,
51}; 51};
52 52
53static struct clk module_clk = { 53static struct clk peripheral_clk = {
54 .name = "module_clk", 54 .name = "peripheral_clk",
55 .parent = &master_clk, 55 .parent = &master_clk,
56 .flags = CLK_ENABLE_ON_INIT, 56 .flags = CLK_ENABLE_ON_INIT,
57}; 57};
@@ -73,7 +73,7 @@ static struct clk cpu_clk = {
73 */ 73 */
74static struct clk *onchip_clocks[] = { 74static struct clk *onchip_clocks[] = {
75 &master_clk, 75 &master_clk,
76 &module_clk, 76 &peripheral_clk,
77 &bus_clk, 77 &bus_clk,
78 &cpu_clk, 78 &cpu_clk,
79}; 79};