Skip to content

Commit ca502fc

Browse files
Peter ZijlstraIngo Molnar
authored andcommitted
cpuidle, clk: Remove trace_.*_rcuidle()
OMAP was the one and only user. Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Signed-off-by: Ingo Molnar <[email protected]> Tested-by: Tony Lindgren <[email protected]> Tested-by: Ulf Hansson <[email protected]> Reviewed-by: Ulf Hansson <[email protected]> Acked-by: Rafael J. Wysocki <[email protected]> Acked-by: Frederic Weisbecker <[email protected]> Acked-by: Stephen Boyd <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent db8f508 commit ca502fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/clk/clk.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,12 +1055,12 @@ static void clk_core_disable(struct clk_core *core)
10551055
if (--core->enable_count > 0)
10561056
return;
10571057

1058-
trace_clk_disable_rcuidle(core);
1058+
trace_clk_disable(core);
10591059

10601060
if (core->ops->disable)
10611061
core->ops->disable(core->hw);
10621062

1063-
trace_clk_disable_complete_rcuidle(core);
1063+
trace_clk_disable_complete(core);
10641064

10651065
clk_core_disable(core->parent);
10661066
}
@@ -1114,12 +1114,12 @@ static int clk_core_enable(struct clk_core *core)
11141114
if (ret)
11151115
return ret;
11161116

1117-
trace_clk_enable_rcuidle(core);
1117+
trace_clk_enable(core);
11181118

11191119
if (core->ops->enable)
11201120
ret = core->ops->enable(core->hw);
11211121

1122-
trace_clk_enable_complete_rcuidle(core);
1122+
trace_clk_enable_complete(core);
11231123

11241124
if (ret) {
11251125
clk_core_disable(core->parent);

0 commit comments

Comments
 (0)