From 9c741bd7df9e91c9ea5172ab586e272dc66f7e63 Mon Sep 17 00:00:00 2001 From: Youngwan Kim Date: Thu, 21 Jun 2018 18:43:55 +0900 Subject: [PATCH] [COMMON] lib: dss-reader: add cpu field in freq Change-Id: I0f53346a4c306e7a31ea4badd1fa13fa2563cee9 Signed-off-by: Youngwan Kim --- lib/dss-reader.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/dss-reader.c b/lib/dss-reader.c index b5d12a62c79a..80439fc1e0f0 100644 --- a/lib/dss-reader.c +++ b/lib/dss-reader.c @@ -38,8 +38,9 @@ int main(int argc, char *argv[]) } for (i = 0; i < DSS_LOG_MAX_NUM; i++) { - printf("log[%.9f] = { 'type' : 'freq', 'cluster' : %d, 'freq' : %lu }\n", + printf("log[%.9f] = { 'type' : 'freq', 'cpu' : %d, 'cluster' : %d, 'freq' : %lu }\n", p->freq[i].time/1.0e9, + p->freq[i].cpu, p->freq[i].type, p->freq[i].target_freq); if (p->freq[i].time == 0) -- 2.20.1