diff options
| author | Masahiro Yamada <[email protected]> | 2016-01-06 13:25:09 +0900 |
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2016-01-29 16:35:49 -0800 |
| commit | cbf9591f665d44f40795afe2eee4fcbcd32575d6 (patch) | |
| tree | b976617c56ab74f29ceb0d83001e8d04e03c6c31 /include | |
| parent | 5540ac8da18789e567f6d16582f76de7ab196eab (diff) | |
clk: add clk_unregister_fixed_factor()
Allow to unregister fixed factor clock.
Signed-off-by: Masahiro Yamada <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Diffstat (limited to 'include')
| -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 |