aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/clock.c
diff options
context:
space:
mode:
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};