diff options
-rw-r--r-- | src/usr/htmgt/htmgt_occ.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/htmgt/htmgt_occ.C b/src/usr/htmgt/htmgt_occ.C index 686a8338b..3a4274fa2 100644 --- a/src/usr/htmgt/htmgt_occ.C +++ b/src/usr/htmgt/htmgt_occ.C @@ -386,11 +386,11 @@ namespace HTMGT SENSOR::StatusSensor::NOT_PRESENT }; if (iv_gpuCfg & GPUCFG_GPU0_PRESENT) - gpu_status[0] = SENSOR::StatusSensor::PRESENT; + gpu_status[0] = SENSOR::StatusSensor::PRESENT_FUNCTIONAL; if (iv_gpuCfg & GPUCFG_GPU1_PRESENT) - gpu_status[1] = SENSOR::StatusSensor::PRESENT; + gpu_status[1] = SENSOR::StatusSensor::PRESENT_FUNCTIONAL; if (iv_gpuCfg & GPUCFG_GPU2_PRESENT) - gpu_status[2] = SENSOR::StatusSensor::PRESENT; + gpu_status[2] = SENSOR::StatusSensor::PRESENT_FUNCTIONAL; TMGT_INF("updateGpuPresence: OCC%d - GPU0:%d, GPU1:%d, GPU2:%d", iv_instance, gpu_status[0], gpu_status[1], gpu_status[2]); |