trace: events: devfreq: Use fixed indentation size to improve readability
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 8 Oct 2020 07:22:10 +0000 (16:22 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 26 Oct 2020 01:52:37 +0000 (10:52 +0900)
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>
include/trace/events/devfreq.h

index cf5b877..bd36d28 100644 (file)
@@ -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)