sched: walt: Fix waltgov_next_freq format specifiers

Certain unsigned int values are being specified as %lu instead of %u and
it is leading to incorrectly displayed values.

Change-Id: I26f65ef24a89c277e2da0f88c1e3d683ef545057
Signed-off-by: Shaleen Agrawal <shalagra@codeaurora.org>
This commit is contained in:
Shaleen Agrawal 2021-06-04 15:09:14 -07:00 committed by Rishabh Bhatnagar
parent 9fdd530d51
commit ddb1c85d60

View File

@ -706,7 +706,7 @@ TRACE_EVENT(waltgov_next_freq,
__entry->cached_raw_freq = cached_raw_freq;
__entry->need_freq_update = need_freq_update;
),
TP_printk("cpu=%u util=%lu max=%lu freq=%u policy_min_freq=%lu policy_max_freq=%lu cached_raw_freq=%lu need_update=%d",
TP_printk("cpu=%u util=%lu max=%lu freq=%u policy_min_freq=%u policy_max_freq=%u cached_raw_freq=%u need_update=%d",
__entry->cpu,
__entry->util,
__entry->max,