Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bf921e5e authored by Lina Iyer's avatar Lina Iyer Committed by Gerrit - the friendly Code Review server
Browse files

trace: msm_low_power: update text description



The value printed on cpu idle exit is a return value from the PSCI call.
To avoid confusion, let's change the text to match the return value.

Change-Id: I8938287fb4d2887aa190af835618d1d0e9f18a99
Signed-off-by: default avatarLina Iyer <ilina@codeaurora.org>
parent f5e30025
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -105,23 +105,23 @@ TRACE_EVENT(cpu_idle_enter,

TRACE_EVENT(cpu_idle_exit,

	TP_PROTO(int index, int success),
	TP_PROTO(int index, int ret),

	TP_ARGS(index, success),
	TP_ARGS(index, ret),

	TP_STRUCT__entry(
		__field(int, index)
		__field(int, success)
		__field(int, ret)
	),

	TP_fast_assign(
		__entry->index = index;
		__entry->success = success;
		__entry->ret = ret;
	),

	TP_printk("idx:%d success:%d",
	TP_printk("idx:%d ret:%d",
		__entry->index,
		__entry->success)
		__entry->ret)
);

TRACE_EVENT(cluster_enter,