All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH] drivers/hwmon/emc1403.c: fix inverted set_hyst()
@ 2014-05-11 12:40 ` Josef Gajdusek
  0 siblings, 0 replies; 4+ messages in thread
From: Josef Gajdusek @ 2014-05-11 12:40 UTC (permalink / raw)
  To: jdelvare; +Cc: linux, lm-sensors, linux-kernel

Fixes inverted set_hyst() (i. e. writing 76000 actually set it to 74000)

Signed-off-by: Josef Gajdusek <atx@atx.name>
---
diff --git a/drivers/hwmon/emc1403.c b/drivers/hwmon/emc1403.c
index 90ec117..61d89d6 100644
--- a/drivers/hwmon/emc1403.c
+++ b/drivers/hwmon/emc1403.c
@@ -163,7 +163,7 @@ static ssize_t store_hyst(struct device *dev,
 	if (retval < 0)
 		goto fail;
 
-	hyst = val - retval * 1000;
+	hyst = retval * 1000 - val;
 	hyst = DIV_ROUND_CLOSEST(hyst, 1000);
 	if (hyst < 0 || hyst > 255) {
 		retval = -ERANGE;

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

end of thread, other threads:[~2014-05-12  8:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-11 12:40 [lm-sensors] [PATCH] drivers/hwmon/emc1403.c: fix inverted set_hyst() Josef Gajdusek
2014-05-11 12:40 ` Josef Gajdusek
2014-05-12  8:36 ` [lm-sensors] " Jean Delvare
2014-05-12  8:36   ` Jean Delvare

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.