From: Youngwan Kim Date: Thu, 21 Jun 2018 09:43:55 +0000 (+0900) Subject: [COMMON] lib: dss-reader: add cpu field in freq X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9c741bd7df9e91c9ea5172ab586e272dc66f7e63;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [COMMON] lib: dss-reader: add cpu field in freq Change-Id: I0f53346a4c306e7a31ea4badd1fa13fa2563cee9 Signed-off-by: Youngwan Kim --- 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)