Commit e3c87607 authored by Paul Mundt's avatar Paul Mundt

sh: clkfwk: Consolidate div6/div4 clk_ops definitions.

Everything with the exception of the _reparent ops are now shared, so
switch everything over to common types.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 764f4e4e
...@@ -148,6 +148,20 @@ static void sh_clk_div_disable(struct clk *clk) ...@@ -148,6 +148,20 @@ static void sh_clk_div_disable(struct clk *clk)
sh_clk_write(val, clk); sh_clk_write(val, clk);
} }
static struct sh_clk_ops sh_clk_div_clk_ops = {
.recalc = sh_clk_div_recalc,
.set_rate = sh_clk_div_set_rate,
.round_rate = sh_clk_div_round_rate,
};
static struct sh_clk_ops sh_clk_div_enable_clk_ops = {
.recalc = sh_clk_div_recalc,
.set_rate = sh_clk_div_set_rate,
.round_rate = sh_clk_div_round_rate,
.enable = sh_clk_div_enable,
.disable = sh_clk_div_disable,
};
/* /*
* div6 support * div6 support
*/ */
...@@ -200,14 +214,6 @@ static int sh_clk_div6_set_parent(struct clk *clk, struct clk *parent) ...@@ -200,14 +214,6 @@ static int sh_clk_div6_set_parent(struct clk *clk, struct clk *parent)
return 0; return 0;
} }
static struct sh_clk_ops sh_clk_div6_clk_ops = {
.recalc = sh_clk_div_recalc,
.round_rate = sh_clk_div_round_rate,
.set_rate = sh_clk_div_set_rate,
.enable = sh_clk_div_enable,
.disable = sh_clk_div_disable,
};
static struct sh_clk_ops sh_clk_div6_reparent_clk_ops = { static struct sh_clk_ops sh_clk_div6_reparent_clk_ops = {
.recalc = sh_clk_div_recalc, .recalc = sh_clk_div_recalc,
.round_rate = sh_clk_div_round_rate, .round_rate = sh_clk_div_round_rate,
...@@ -286,7 +292,7 @@ static int __init sh_clk_div6_register_ops(struct clk *clks, int nr, ...@@ -286,7 +292,7 @@ static int __init sh_clk_div6_register_ops(struct clk *clks, int nr,
int __init sh_clk_div6_register(struct clk *clks, int nr) int __init sh_clk_div6_register(struct clk *clks, int nr)
{ {
return sh_clk_div6_register_ops(clks, nr, &sh_clk_div6_clk_ops); return sh_clk_div6_register_ops(clks, nr, &sh_clk_div_enable_clk_ops);
} }
int __init sh_clk_div6_reparent_register(struct clk *clks, int nr) int __init sh_clk_div6_reparent_register(struct clk *clks, int nr)
...@@ -327,20 +333,6 @@ static int sh_clk_div4_set_parent(struct clk *clk, struct clk *parent) ...@@ -327,20 +333,6 @@ static int sh_clk_div4_set_parent(struct clk *clk, struct clk *parent)
return 0; return 0;
} }
static struct sh_clk_ops sh_clk_div4_clk_ops = {
.recalc = sh_clk_div_recalc,
.set_rate = sh_clk_div_set_rate,
.round_rate = sh_clk_div_round_rate,
};
static struct sh_clk_ops sh_clk_div4_enable_clk_ops = {
.recalc = sh_clk_div_recalc,
.set_rate = sh_clk_div_set_rate,
.round_rate = sh_clk_div_round_rate,
.enable = sh_clk_div_enable,
.disable = sh_clk_div_disable,
};
static struct sh_clk_ops sh_clk_div4_reparent_clk_ops = { static struct sh_clk_ops sh_clk_div4_reparent_clk_ops = {
.recalc = sh_clk_div_recalc, .recalc = sh_clk_div_recalc,
.set_rate = sh_clk_div_set_rate, .set_rate = sh_clk_div_set_rate,
...@@ -385,14 +377,14 @@ static int __init sh_clk_div4_register_ops(struct clk *clks, int nr, ...@@ -385,14 +377,14 @@ static int __init sh_clk_div4_register_ops(struct clk *clks, int nr,
int __init sh_clk_div4_register(struct clk *clks, int nr, int __init sh_clk_div4_register(struct clk *clks, int nr,
struct clk_div4_table *table) struct clk_div4_table *table)
{ {
return sh_clk_div4_register_ops(clks, nr, table, &sh_clk_div4_clk_ops); return sh_clk_div4_register_ops(clks, nr, table, &sh_clk_div_clk_ops);
} }
int __init sh_clk_div4_enable_register(struct clk *clks, int nr, int __init sh_clk_div4_enable_register(struct clk *clks, int nr,
struct clk_div4_table *table) struct clk_div4_table *table)
{ {
return sh_clk_div4_register_ops(clks, nr, table, return sh_clk_div4_register_ops(clks, nr, table,
&sh_clk_div4_enable_clk_ops); &sh_clk_div_enable_clk_ops);
} }
int __init sh_clk_div4_reparent_register(struct clk *clks, int nr, int __init sh_clk_div4_reparent_register(struct clk *clks, int nr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment