clk: Remove unused function __clk_get_prepare_count
authorTomeu Vizoso <tomeu.vizoso@collabora.com>
Tue, 2 Dec 2014 07:54:18 +0000 (08:54 +0100)
committerMichael Turquette <mturquette@linaro.org>
Wed, 3 Dec 2014 23:15:34 +0000 (15:15 -0800)
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
drivers/clk/clk.c
include/linux/clk-provider.h

index 5307225684eb351c49463b1332fdf9eb6e4f9755..42f940ff5edfc70bfb6db96ac6663bfee5620fe8 100644 (file)
@@ -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;
index 2839c639f0920942d1e835dd464598432e22e974..fcf3252b829f21c517492758c993e5a9d1a032ba 100644 (file)
@@ -544,7 +544,6 @@ u8 __clk_get_num_parents(struct clk *clk);
 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 int __clk_get_prepare_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);
This page took 0.029768 seconds and 5 git commands to generate.