aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/hwmon.h
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-07-28 23:14:59 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-05 09:14:17 -0700
commit53ae11b08353268c4012ef107bf205a0724d71aa (patch)
tree10820fdc417eb80a329a3326315fe74d5f545ae3 /include/linux/hwmon.h
parent[PATCH] I2C: Improve core debugging messages (diff)
downloadwireguard-linux-53ae11b08353268c4012ef107bf205a0724d71aa.tar.xz
wireguard-linux-53ae11b08353268c4012ef107bf205a0724d71aa.zip
[PATCH] hwmon: move SENSORS_LIMIT to hwmon.h
Move SENSORS_LIMIT from i2c-sensor.h to hwmon.h, as it is in no way related to i2c. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/hwmon.h')
-rw-r--r--include/linux/hwmon.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/hwmon.h b/include/linux/hwmon.h
index bf90e6001e3b..0efd994c37f1 100644
--- a/include/linux/hwmon.h
+++ b/include/linux/hwmon.h
@@ -20,5 +20,16 @@ struct class_device *hwmon_device_register(struct device *dev);
void hwmon_device_unregister(struct class_device *cdev);
+/* Scale user input to sensible values */
+static inline int SENSORS_LIMIT(long value, long low, long high)
+{
+ if (value < low)
+ return low;
+ else if (value > high)
+ return high;
+ else
+ return value;
+}
+
#endif