diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-07-28 17:14:59 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-05 12:14:17 -0400 |
commit | 53ae11b08353268c4012ef107bf205a0724d71aa (patch) | |
tree | 10820fdc417eb80a329a3326315fe74d5f545ae3 | |
parent | b6d7b3d1b5a388b7e9af2629a9ecccedee064078 (diff) |
[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>
-rw-r--r-- | drivers/hwmon/lm75.h | 2 | ||||
-rw-r--r-- | include/linux/hwmon.h | 11 | ||||
-rw-r--r-- | include/linux/i2c-sensor.h | 12 |
3 files changed, 12 insertions, 13 deletions
diff --git a/drivers/hwmon/lm75.h b/drivers/hwmon/lm75.h index 63e3f2fb4c21..af7dc650ee15 100644 --- a/drivers/hwmon/lm75.h +++ b/drivers/hwmon/lm75.h | |||
@@ -25,7 +25,7 @@ | |||
25 | which contains this code, we don't worry about the wasted space. | 25 | which contains this code, we don't worry about the wasted space. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <linux/i2c-sensor.h> | 28 | #include <linux/hwmon.h> |
29 | 29 | ||
30 | /* straight from the datasheet */ | 30 | /* straight from the datasheet */ |
31 | #define LM75_TEMP_MIN (-55000) | 31 | #define LM75_TEMP_MIN (-55000) |
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); | |||
20 | 20 | ||
21 | void hwmon_device_unregister(struct class_device *cdev); | 21 | void hwmon_device_unregister(struct class_device *cdev); |
22 | 22 | ||
23 | /* Scale user input to sensible values */ | ||
24 | static inline int SENSORS_LIMIT(long value, long low, long high) | ||
25 | { | ||
26 | if (value < low) | ||
27 | return low; | ||
28 | else if (value > high) | ||
29 | return high; | ||
30 | else | ||
31 | return value; | ||
32 | } | ||
33 | |||
23 | #endif | 34 | #endif |
24 | 35 | ||
diff --git a/include/linux/i2c-sensor.h b/include/linux/i2c-sensor.h index ae73b9e789cb..e832d3286a46 100644 --- a/include/linux/i2c-sensor.h +++ b/include/linux/i2c-sensor.h | |||
@@ -242,16 +242,4 @@ extern int i2c_detect(struct i2c_adapter *adapter, | |||
242 | struct i2c_address_data *address_data, | 242 | struct i2c_address_data *address_data, |
243 | int (*found_proc) (struct i2c_adapter *, int, int)); | 243 | int (*found_proc) (struct i2c_adapter *, int, int)); |
244 | 244 | ||
245 | |||
246 | /* This macro is used to scale user-input to sensible values in almost all | ||
247 | chip drivers. */ | ||
248 | static inline int SENSORS_LIMIT(long value, long low, long high) | ||
249 | { | ||
250 | if (value < low) | ||
251 | return low; | ||
252 | else if (value > high) | ||
253 | return high; | ||
254 | else | ||
255 | return value; | ||
256 | } | ||
257 | #endif /* def _LINUX_I2C_SENSOR_H */ | 245 | #endif /* def _LINUX_I2C_SENSOR_H */ |