Skip to content

Commit 94ff50f

Browse files
tobluxDaniel Lezcano
authored andcommitted
thermal/drivers/sprd: Use min instead of clamp in sprd_thm_temp_to_rawdata
Clamping 'val' to itself is unnecessary and the expression can be simplified by using min() instead. Casting SPRD_THM_RAW_DATA_HIGH to u32 is also redundant and can be removed. Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com> Reviewed-by: Lukasz Luba <lukasz.luba@arm.com> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Link: https://patch.msgid.link/20260310102523.201722-3-thorsten.blum@linux.dev Signed-off-by: Daniel Lezcano <daniel.lezcano@kernel.org>
1 parent a53a67b commit 94ff50f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/thermal/sprd_thermal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ static int sprd_thm_temp_to_rawdata(int temp, struct sprd_thermal_sensor *sen)
201201
*/
202202
val = (temp + sen->cal_offset) / sen->cal_slope;
203203

204-
return clamp(val, val, (u32)(SPRD_THM_RAW_DATA_HIGH - 1));
204+
return min(val, SPRD_THM_RAW_DATA_HIGH - 1);
205205
}
206206

207207
static int sprd_thm_read_temp(struct thermal_zone_device *tz, int *temp)

0 commit comments

Comments
 (0)