diff options
author | Tomeu Vizoso <[email protected]> | 2014-12-02 08:54:20 +0100 |
---|---|---|
committer | Michael Turquette <[email protected]> | 2014-12-03 15:15:34 -0800 |
commit | 920f1c7472f35cd3b3a3add10cccb0ef12376a17 (patch) | |
tree | 1734bad1194ae1fa1ce38042bb2f70b52dc1bb21 | |
parent | 10cdfe54dab034311c8e2fad9ba2dffbe616caa9 (diff) |
clk: Don't expose __clk_get_accuracy
As it's only used internally, in drivers/clk/clk.c.
Signed-off-by: Tomeu Vizoso <[email protected]>
Reviewed-by: Stephen Boyd <[email protected]>
Signed-off-by: Michael Turquette <[email protected]>
-rw-r--r-- | drivers/clk/clk.c | 2 | ||||
-rw-r--r-- | include/linux/clk-provider.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 609e9db1a69a..73247e90ee59 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -596,7 +596,7 @@ out: } EXPORT_SYMBOL_GPL(__clk_get_rate); -unsigned long __clk_get_accuracy(struct clk *clk) +static unsigned long __clk_get_accuracy(struct clk *clk) { if (!clk) return 0; diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index fcf3252b829f..270137aaf3ab 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -545,7 +545,6 @@ struct clk *__clk_get_parent(struct clk *clk); struct clk *clk_get_parent_by_index(struct clk *clk, u8 index); unsigned int __clk_get_enable_count(struct clk *clk); unsigned long __clk_get_rate(struct clk *clk); -unsigned long __clk_get_accuracy(struct clk *clk); unsigned long __clk_get_flags(struct clk *clk); bool __clk_is_prepared(struct clk *clk); bool __clk_is_enabled(struct clk *clk); |