The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] hwmon: emc2103: use min_t() for explicit type in fan target clamp
@ 2026-07-06 16:25 Animesh Rai
  2026-07-06 16:51 ` Guenter Roeck
  2026-07-06 19:57 ` David Laight
  0 siblings, 2 replies; 5+ messages in thread
From: Animesh Rai @ 2026-07-06 16:25 UTC (permalink / raw)
  To: steve.glendinning, linux-hwmon; +Cc: linux, linux-kernel, Animesh Rai

Using min() with an explicit cast on one operand is fragile. Replace
with min_t(u16, ...) to make the intended comparison type explicit and
avoid implicit type conversion.

Signed-off-by: Animesh Rai <animeshrai853@gmail.com>
---
 drivers/hwmon/emc2103.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hwmon/emc2103.c b/drivers/hwmon/emc2103.c
index 27dc149a3ed9..fbb1b4025eb7 100644
--- a/drivers/hwmon/emc2103.c
+++ b/drivers/hwmon/emc2103.c
@@ -348,7 +348,7 @@ static ssize_t fan1_div_store(struct device *dev, struct device_attribute *da,
 	/* update fan target if high byte is not disabled */
 	if ((data->fan_target & 0x1fe0) != 0x1fe0) {
 		u16 new_target = (data->fan_target * old_div) / new_div;
-		data->fan_target = min(new_target, (u16)0x1fff);
+		data->fan_target = min_t(u16, new_target, 0x1fff);
 		write_fan_target_to_i2c(client, data->fan_target);
 	}
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-07-06 20:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06 16:25 [PATCH] hwmon: emc2103: use min_t() for explicit type in fan target clamp Animesh Rai
2026-07-06 16:51 ` Guenter Roeck
2026-07-06 19:57 ` David Laight
2026-07-06 20:16   ` Animesh Rai
2026-07-06 20:29   ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox