diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-06 13:25:09 +0900 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-01-29 16:35:49 -0800 |
commit | cbf9591f665d44f40795afe2eee4fcbcd32575d6 (patch) | |
tree | b976617c56ab74f29ceb0d83001e8d04e03c6c31 /include/linux/clk-provider.h | |
parent | 5540ac8da18789e567f6d16582f76de7ab196eab (diff) | |
download | lwn-cbf9591f665d44f40795afe2eee4fcbcd32575d6.tar.gz lwn-cbf9591f665d44f40795afe2eee4fcbcd32575d6.zip |
clk: add clk_unregister_fixed_factor()
Allow to unregister fixed factor clock.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 33dc814d0f43..3641eecf462a 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -498,6 +498,7 @@ extern const struct clk_ops clk_fixed_factor_ops; struct clk *clk_register_fixed_factor(struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned int mult, unsigned int div); +void clk_unregister_fixed_factor(struct clk *clk); /** * struct clk_fractional_divider - adjustable fractional divider clock |