aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-05-11 03:05:25 -0400
committerPaul Mundt <lethal@linux-sh.org>2010-05-13 04:34:23 -0400
commit3f6623497eee32161b0558c02963fa793988b6a0 (patch)
tree65416d62b6c915616c1181d93509fd41c9627097 /arch/sh/kernel/cpu
parenta3e9f2b72fbcb7c4266f4b7ef1814bb8806c1fac (diff)
sh: sh7723 div4 clkdev lookup
Add sh7723 DIV4 clocks to the clkdev lookup list. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu')
-rw-r--r--arch/sh/kernel/cpu/sh4a/clock-sh7723.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7723.c b/arch/sh/kernel/cpu/sh4a/clock-sh7723.c
index 500715f78142..05b112dedd1a 100644
--- a/arch/sh/kernel/cpu/sh4a/clock-sh7723.c
+++ b/arch/sh/kernel/cpu/sh4a/clock-sh7723.c
@@ -211,6 +211,17 @@ static struct clk mstp_clks[] = {
211#define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk } 211#define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
212 212
213static struct clk_lookup lookups[] = { 213static struct clk_lookup lookups[] = {
214 /* DIV4 clocks */
215 CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),
216 CLKDEV_CON_ID("umem_clk", &div4_clks[DIV4_U]),
217 CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_SH]),
218 CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_B]),
219 CLKDEV_CON_ID("b3_clk", &div4_clks[DIV4_B3]),
220 CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),
221 CLKDEV_CON_ID("irda_clk", &div4_enable_clks[DIV4_IRDA]),
222 CLKDEV_CON_ID("siua_clk", &div4_reparent_clks[DIV4_SIUA]),
223 CLKDEV_CON_ID("siub_clk", &div4_reparent_clks[DIV4_SIUB]),
224
214 /* DIV6 clocks */ 225 /* DIV6 clocks */
215 CLKDEV_CON_ID("video_clk", &div6_clks[DIV6_V]), 226 CLKDEV_CON_ID("video_clk", &div6_clks[DIV6_V]),
216 227