summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2026-03-10 13:25:25 +0300
committerDaniel Lezcano <daniel.lezcano@kernel.org>2026-03-10 13:54:12 +0300
commit94ff50f41472391f7a5b98fd9801dfc361db8957 (patch)
tree0343281d574340e7c2592939d021f0ffc1dbf8cb
parenta53a67b1fe94e4a4a3b05edb6bf52e74676e8de2 (diff)
downloadlinux-94ff50f41472391f7a5b98fd9801dfc361db8957.tar.xz
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>
-rw-r--r--drivers/thermal/sprd_thermal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/sprd_thermal.c b/drivers/thermal/sprd_thermal.c
index 44fa45f74da7..d683fcb0f8ab 100644
--- a/drivers/thermal/sprd_thermal.c
+++ b/drivers/thermal/sprd_thermal.c
@@ -201,7 +201,7 @@ static int sprd_thm_temp_to_rawdata(int temp, struct sprd_thermal_sensor *sen)
*/
val = (temp + sen->cal_offset) / sen->cal_slope;
- return clamp(val, val, (u32)(SPRD_THM_RAW_DATA_HIGH - 1));
+ return min(val, SPRD_THM_RAW_DATA_HIGH - 1);
}
static int sprd_thm_read_temp(struct thermal_zone_device *tz, int *temp)