diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/hwmon.h | 12 | 
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/hwmon.h b/include/linux/hwmon.h index 82b29ae6ebb..b2514f70d59 100644 --- a/include/linux/hwmon.h +++ b/include/linux/hwmon.h @@ -20,16 +20,4 @@ struct device *hwmon_device_register(struct device *dev);  void hwmon_device_unregister(struct device *dev); -/* 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 -  |