summaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/nvgpu.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/uapi/linux/nvgpu.h b/include/uapi/linux/nvgpu.h
index 16aa51b2..0aeea4f0 100644
--- a/include/uapi/linux/nvgpu.h
+++ b/include/uapi/linux/nvgpu.h
@@ -743,7 +743,10 @@ struct nvgpu_gpu_get_power_args {
743 743
744struct nvgpu_gpu_get_temperature_args { 744struct nvgpu_gpu_get_temperature_args {
745 __u32 reserved[3]; 745 __u32 reserved[3];
746 __u32 temperature; /* mC */ 746 /* Temperature in signed fixed point format SFXP24.8
747 * Celsius = temp_f24_8 / 256.
748 */
749 __s32 temp_f24_8;
747}; 750};
748 751
749#define NVGPU_GPU_IOCTL_ZCULL_GET_CTX_SIZE \ 752#define NVGPU_GPU_IOCTL_ZCULL_GET_CTX_SIZE \