hwmon: Retire SENSORS_LIMIT
[cascardo/linux.git] / include / linux / hwmon.h
index 82b29ae..b2514f7 100644 (file)
@@ -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
-