nvidia-gpu: Fix thresholds for GPU_TEMP_1
Fixes thresholds for GPU_TEMP_1 to be upper critical, warning,
shutdown. Rather than lower critical, et al.
Change-Id: I580766288f3d27a48c75f00ea1dab13f0284bed6
Signed-off-by: Marc Olberding <molberding@nvidia.com>
diff --git a/src/nvidia-gpu/NvidiaGpuDevice.hpp b/src/nvidia-gpu/NvidiaGpuDevice.hpp
index df0c2e2..866db32 100644
--- a/src/nvidia-gpu/NvidiaGpuDevice.hpp
+++ b/src/nvidia-gpu/NvidiaGpuDevice.hpp
@@ -78,7 +78,7 @@
 
     std::array<uint8_t, sizeof(gpu::ReadThermalParametersRequest)>
         thermalParamReqMsg{};
-    std::array<uint8_t, 3> thresholds{};
+    std::array<int32_t, 3> thresholds{};
     size_t current_threshold_index{};
 
     SensorConfigs configs;