/* arch/sh/kernel/cpu/clock.c */
int clk_init(void);
-
+unsigned long followparent_recalc(struct clk *clk);
void clk_recalc_rate(struct clk *);
int clk_register(struct clk *);
}
}
+/* Used for clocks that always have same value as the parent clock */
+unsigned long followparent_recalc(struct clk *clk)
+{
+ return clk->parent->rate;
+}
+
static void __clk_init(struct clk *clk)
{
/*
.recalc = bus_clk_recalc,
};
-static unsigned long cpu_clk_recalc(struct clk *clk)
-{
- return clk->parent->rate;
-}
-
static struct clk_ops sh7619_cpu_clk_ops = {
- .recalc = cpu_clk_recalc,
+ .recalc = followparent_recalc,
};
static struct clk_ops *sh7619_clk_ops[] = {
.recalc = bus_clk_recalc,
};
-static unsigned long cpu_clk_recalc(struct clk *clk)
-{
- return clk->parent->rate;
-}
-
static struct clk_ops sh7203_cpu_clk_ops = {
- .recalc = cpu_clk_recalc,
+ .recalc = followparent_recalc,
};
static struct clk_ops *sh7203_clk_ops[] = {
sh7722_mstpcr_start_stop(clk, 0);
}
-static unsigned long sh7722_mstpcr_recalc(struct clk *clk)
-{
- return clk->parent->rate;
-}
-
static struct clk_ops sh7722_mstpcr_clk_ops = {
.enable = sh7722_mstpcr_enable,
.disable = sh7722_mstpcr_disable,
- .recalc = sh7722_mstpcr_recalc,
+ .recalc = followparent_recalc,
};
#define MSTPCR(_name, _parent, regnr, bitnr) \
.recalc = bus_clk_recalc,
};
-static unsigned long cpu_clk_recalc(struct clk *clk)
-{
- return clk->parent->rate;
-}
-
static struct clk_ops sh7763_cpu_clk_ops = {
- .recalc = cpu_clk_recalc,
+ .recalc = followparent_recalc,
};
static struct clk_ops *sh7763_clk_ops[] = {