diff options
author | Burt P <pburt0@gmail.com> | 2018-10-20 15:57:21 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2018-10-22 19:45:03 -0700 |
commit | 2e8261216b99ef335dc9d1e04cdcc8ac8fe5f302 (patch) | |
tree | 2b9c9da1f2e1f819dec64eb8a228d9da2c66d091 /modules/devices/gpu.c | |
parent | 5cd1184f923680efeaf4bf0198c3d933150a9b39 (diff) |
devices/gpu: specify source of freq information
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/gpu.c')
-rw-r--r-- | modules/devices/gpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/devices/gpu.c b/modules/devices/gpu.c index 48877897..19aadef9 100644 --- a/modules/devices/gpu.c +++ b/modules/devices/gpu.c @@ -195,11 +195,11 @@ int _dt_soc_gpu(gpud *gpu) { gchar *opp_str; if (gpu->dt_opp) { - opp_str = g_strdup_printf("[%s]\n" + opp_str = g_strdup_printf("[%s %s]\n" /* MinFreq */ "%s=%d %s\n" /* MaxFreq */ "%s=%d %s\n" /* Latency */ "%s=%d %s\n", - _("Frequency Scaling"), + _("Frequency Scaling"), _("(OPPv2)"), _("Minimum"), gpu->dt_opp->khz_min, _("kHz"), _("Maximum"), gpu->dt_opp->khz_max, _("kHz"), _("Transition Latency"), gpu->dt_opp->clock_latency_ns, _("ns") ); |