diff options
author | Francesco VIRLINZI <francesco.virlinzi@st.com> | 2009-03-11 07:40:54 (GMT) |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-03-11 08:18:46 (GMT) |
commit | d680c76eccd9222031ee30dcee5fdedba2467610 (patch) | |
tree | cfde726fe9c9193c07c768cb2144cb1eb4f1f1f8 /arch/sh/include | |
parent | 47a72688fae7298e1ad5fdc9bff7e04b6a549620 (diff) | |
download | linux-d680c76eccd9222031ee30dcee5fdedba2467610.tar.xz |
sh: clkfwk: add clk_set_parent/clk_get_parent
This patch adds the clk_set_parent/clk_get_parent routines to the sh
clock framework.
Signed-off-by: Francesco Virlinzi <francesco.virlinzi@st.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include')
-rw-r--r-- | arch/sh/include/asm/clock.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/include/asm/clock.h b/arch/sh/include/asm/clock.h index f9c8858..2f6c962 100644 --- a/arch/sh/include/asm/clock.h +++ b/arch/sh/include/asm/clock.h @@ -15,6 +15,7 @@ struct clk_ops { void (*disable)(struct clk *clk); void (*recalc)(struct clk *clk); int (*set_rate)(struct clk *clk, unsigned long rate, int algo_id); + int (*set_parent)(struct clk *clk, struct clk *parent); long (*round_rate)(struct clk *clk, unsigned long rate); }; |