clk: Use _rcuidle suffix to allow clk_core_enable() to used from idle
[deliverable/linux.git] / drivers / clk / clk.c
index fb74dc1f7520503d72f024b596dc72d002851e4c..ec83f404c1d279a86db025464a51d7bad249eea2 100644 (file)
@@ -682,12 +682,12 @@ static void clk_core_disable(struct clk_core *core)
        if (--core->enable_count > 0)
                return;
 
-       trace_clk_disable(core);
+       trace_clk_disable_rcuidle(core);
 
        if (core->ops->disable)
                core->ops->disable(core->hw);
 
-       trace_clk_disable_complete(core);
+       trace_clk_disable_complete_rcuidle(core);
 
        clk_core_disable(core->parent);
 }
@@ -735,12 +735,12 @@ static int clk_core_enable(struct clk_core *core)
                if (ret)
                        return ret;
 
-               trace_clk_enable(core);
+               trace_clk_enable_rcuidle(core);
 
                if (core->ops->enable)
                        ret = core->ops->enable(core->hw);
 
-               trace_clk_enable_complete(core);
+               trace_clk_enable_complete_rcuidle(core);
 
                if (ret) {
                        clk_core_disable(core->parent);
This page took 0.0412 seconds and 5 git commands to generate.