summaryrefslogtreecommitdiff
path: root/include/trace/events/devfreq.h
diff options
context:
space:
mode:
authorChanwoo Choi <cw00.choi@samsung.com>2020-10-08 10:22:10 +0300
committerChanwoo Choi <cw00.choi@samsung.com>2020-10-26 04:52:37 +0300
commit4281461c01f702f9427554718988b5e8fbfd64fb (patch)
tree04a343e658a5e9a401e02ee5f7eb8346311982bf /include/trace/events/devfreq.h
parent3650b228f83adda7e5ee532e2b90429c03f7b9ec (diff)
downloadlinux-4281461c01f702f9427554718988b5e8fbfd64fb.tar.xz
trace: events: devfreq: Use fixed indentation size to improve readability
Each tracepoint infromation consist of the different size value. So, in order to improve the readability, use the fixed indentation size. Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'include/trace/events/devfreq.h')
-rw-r--r--include/trace/events/devfreq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/devfreq.h b/include/trace/events/devfreq.h
index cf5b8772175d..bd36d28d16bc 100644
--- a/include/trace/events/devfreq.h
+++ b/include/trace/events/devfreq.h
@@ -29,7 +29,7 @@ TRACE_EVENT(devfreq_monitor,
__assign_str(dev_name, dev_name(&devfreq->dev));
),
- TP_printk("dev_name=%s freq=%lu polling_ms=%u load=%lu",
+ TP_printk("dev_name=%-30s freq=%-12lu polling_ms=%-3u load=%-2lu",
__get_str(dev_name), __entry->freq, __entry->polling_ms,
__entry->total_time == 0 ? 0 :
(100 * __entry->busy_time) / __entry->total_time)