aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-05-10 10:02:09 -0400
committerPaul Mundt <lethal@linux-sh.org>2010-05-10 22:48:55 -0400
commit9e1985e13d42b4b66af94637346849565174309d (patch)
tree201338d22f7df6ace14e3f0ee6db475bbd48275e /arch/sh/include
parent098ec49b684313cbd2ba1e24db61cfda9788ff73 (diff)
sh: get rid of div6 clock names
Get rid of div6 clock names on sh7343/sh7366/sh7722/sh7723/sh7724 Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include')
-rw-r--r--arch/sh/include/asm/clock.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/sh/include/asm/clock.h b/arch/sh/include/asm/clock.h
index 4b19179230f..405a12c0996 100644
--- a/arch/sh/include/asm/clock.h
+++ b/arch/sh/include/asm/clock.h
@@ -151,12 +151,11 @@ int sh_clk_div4_enable_register(struct clk *clks, int nr,
151int sh_clk_div4_reparent_register(struct clk *clks, int nr, 151int sh_clk_div4_reparent_register(struct clk *clks, int nr,
152 struct clk_div4_table *table); 152 struct clk_div4_table *table);
153 153
154#define SH_CLK_DIV6(_name, _parent, _reg, _flags) \ 154#define SH_CLK_DIV6(_parent, _reg, _flags) \
155{ \ 155{ \
156 .name = _name, \ 156 .parent = _parent, \
157 .parent = _parent, \ 157 .enable_reg = (void __iomem *)_reg, \
158 .enable_reg = (void __iomem *)_reg, \ 158 .flags = _flags, \
159 .flags = _flags, \
160} 159}
161 160
162int sh_clk_div6_register(struct clk *clks, int nr); 161int sh_clk_div6_register(struct clk *clks, int nr);