Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7168
b: refs/heads/master
c: 53ae11b
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Greg Kroah-Hartman committed Sep 5, 2005
1 parent 4561ccd commit 1029f0a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b6d7b3d1b5a388b7e9af2629a9ecccedee064078
refs/heads/master: 53ae11b08353268c4012ef107bf205a0724d71aa
2 changes: 1 addition & 1 deletion trunk/drivers/hwmon/lm75.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
which contains this code, we don't worry about the wasted space.
*/

#include <linux/i2c-sensor.h>
#include <linux/hwmon.h>

/* straight from the datasheet */
#define LM75_TEMP_MIN (-55000)
Expand Down
11 changes: 11 additions & 0 deletions trunk/include/linux/hwmon.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

12 changes: 0 additions & 12 deletions trunk/include/linux/i2c-sensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,16 +242,4 @@ extern int i2c_detect(struct i2c_adapter *adapter,
struct i2c_address_data *address_data,
int (*found_proc) (struct i2c_adapter *, int, int));


/* This macro is used to scale user-input to sensible values in almost all
chip drivers. */
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 /* def _LINUX_I2C_SENSOR_H */

0 comments on commit 1029f0a

Please sign in to comment.