Lines Matching defs:temp
22 #define TRITSR 0x20 /* TMU immediate temp */
61 static int imx8mm_tmu_get_temp(void *data, int *temp)
74 *temp = val * 1000;
75 if (*temp < VER1_TEMP_LOW_LIMIT || *temp > VER2_TEMP_HIGH_LIMIT)
81 static int imx8mp_tmu_get_temp(void *data, int *temp)
98 *temp = val * 1000;
99 if (*temp < VER2_TEMP_LOW_LIMIT || *temp > VER2_TEMP_HIGH_LIMIT)
105 static int tmu_get_temp(void *data, int *temp)
110 return tmu->socdata->get_temp(data, temp);