summaryrefslogtreecommitdiff
path: root/drivers/clk/qcom/clk-branch.c
diff options
context:
space:
mode:
authorTaniya Das <tdas@codeaurora.org>2017-02-28 10:48:38 +0530
committerTaniya Das <tdas@codeaurora.org>2017-03-17 09:12:10 +0530
commit947428e547f7be91fca50e902041e83a4b2be4c6 (patch)
treeb3facbb18d53fe1ba63292a2ebbe39cc9c472df1 /drivers/clk/qcom/clk-branch.c
parent76ddd7e95c11290a1f126cbde7321d4bf1ed429e (diff)
clk: Move the measure functionality from common clock framework
Common Clock Framework(CCF) already has a clock ops hook `debug_init` which could be used for the debugfs clock measure functionality. Remove the APIs from the CCF and update the 'debug_init' clock ops to the clock types which require the measure functionality. Change-Id: I0c01f72a9d1d1caa1b1ab73a800401c2cbc3216c Signed-off-by: Taniya Das <tdas@codeaurora.org>
Diffstat (limited to 'drivers/clk/qcom/clk-branch.c')
-rw-r--r--drivers/clk/qcom/clk-branch.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/qcom/clk-branch.c b/drivers/clk/qcom/clk-branch.c
index ca6010db8d78..3e9cd9909b86 100644
--- a/drivers/clk/qcom/clk-branch.c
+++ b/drivers/clk/qcom/clk-branch.c
@@ -21,6 +21,7 @@
#include <linux/regmap.h>
#include "clk-branch.h"
+#include "clk-debug.h"
#include "clk-regmap.h"
#include "common.h"
@@ -250,6 +251,7 @@ const struct clk_ops clk_branch2_ops = {
.is_enabled = clk_is_enabled_regmap,
.set_flags = clk_branch_set_flags,
.list_registers = clk_branch2_list_registers,
+ .debug_init = clk_debug_measure_add,
};
EXPORT_SYMBOL_GPL(clk_branch2_ops);
@@ -384,6 +386,7 @@ const struct clk_ops clk_gate2_ops = {
.is_enabled = clk_is_enabled_regmap,
.list_registers = clk_gate2_list_registers,
.set_flags = clk_gate2_set_flags,
+ .debug_init = clk_debug_measure_add,
};
EXPORT_SYMBOL_GPL(clk_gate2_ops);