diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2012-08-31 14:21:29 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-09-07 02:57:08 +0200 |
commit | 70b1fce2ec3a89e68a35d99e5e9c6c90338b3dd1 (patch) | |
tree | ce44f8077ac53a8f0e03faf50ed4296202ae7983 /drivers/clk/ux500/clk.h | |
parent | clk: Provide option for clk_get_rate to issue hw for new rate (diff) | |
download | linux-70b1fce2ec3a89e68a35d99e5e9c6c90338b3dd1.tar.xz linux-70b1fce2ec3a89e68a35d99e5e9c6c90338b3dd1.zip |
clk: ux500: Support for prmcu_rate clock
The prmcu_rate clock is not gateable and has a rate which
only can be fetched.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/ux500/clk.h')
-rw-r--r-- | drivers/clk/ux500/clk.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/clk/ux500/clk.h b/drivers/clk/ux500/clk.h index 32085aa98865..836d7d16751e 100644 --- a/drivers/clk/ux500/clk.h +++ b/drivers/clk/ux500/clk.h @@ -35,6 +35,11 @@ struct clk *clk_reg_prcmu_gate(const char *name, u8 cg_sel, unsigned long flags); +struct clk *clk_reg_prcmu_rate(const char *name, + const char *parent_name, + u8 cg_sel, + unsigned long flags); + struct clk *clk_reg_prcmu_opp_gate(const char *name, const char *parent_name, u8 cg_sel, |