diff options
author | Burt P <pburt0@gmail.com> | 2018-10-20 14:38:25 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2018-10-22 19:45:03 -0700 |
commit | 5cd1184f923680efeaf4bf0198c3d933150a9b39 (patch) | |
tree | 2be0749f2381110b78870e66e385a0c012a9ddae /hardinfo | |
parent | 33990da876a235f92dfb43be5a05e85adf930ff9 (diff) |
gpu: show freq range, if available
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'hardinfo')
-rw-r--r-- | hardinfo/gpu_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hardinfo/gpu_util.c b/hardinfo/gpu_util.c index 94654eb4..ba72b907 100644 --- a/hardinfo/gpu_util.c +++ b/hardinfo/gpu_util.c @@ -305,6 +305,7 @@ gpud *dt_soc_gpu() { gpu->dt_opp = dtr_get_opp_range(dt, dt_gpu_path); if (gpu->dt_opp) { gpu->khz_max = gpu->dt_opp->khz_max; + gpu->khz_min = gpu->dt_opp->khz_min; } EMPIFNULL(gpu->dt_name); EMPIFNULL(gpu->dt_status); |