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

Commit aa259d59 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "trace: msm_low_power: update text description"

parents 07b4fed7 bf921e5e
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,