diff options
author | Tomeu Vizoso <tomeu.vizoso@collabora.com> | 2014-12-02 08:54:18 +0100 |
---|---|---|
committer | Michael Turquette <mturquette@linaro.org> | 2014-12-03 15:15:34 -0800 |
commit | 4afbe1760d89fec07e7a8cce58beb1b4921a194c (patch) | |
tree | 9e5782812d293d5ea8ac7aff19f9d991fcd95e96 /drivers/clk/clk.c | |
parent | ffa3a37a611190b2a7f44b24b903b3985d8ba780 (diff) | |
download | blackbird-op-linux-4afbe1760d89fec07e7a8cce58beb1b4921a194c.tar.gz blackbird-op-linux-4afbe1760d89fec07e7a8cce58beb1b4921a194c.zip |
clk: Remove unused function __clk_get_prepare_count
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 5307225684eb..42f940ff5edf 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -574,11 +574,6 @@ unsigned int __clk_get_enable_count(struct clk *clk) return !clk ? 0 : clk->enable_count; } -unsigned int __clk_get_prepare_count(struct clk *clk) -{ - return !clk ? 0 : clk->prepare_count; -} - unsigned long __clk_get_rate(struct clk *clk) { unsigned long ret; |