diff options
Diffstat (limited to 'include/linux/i2c-sensor.h')
-rw-r--r-- | include/linux/i2c-sensor.h | 12 |
1 files changed, 0 insertions, 12 deletions
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 */ |