Skip to content

Commit

Permalink
Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/…
Browse files Browse the repository at this point in the history
…kernel/git/jdelvare/staging

Pull hwmon update from Jean Delvare.

* 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging:
  hwmon: (lm63) Drop redundant safety on cache lifetime
  hwmon: (lm90) Drop redundant safety on cache lifetime
  • Loading branch information
torvalds committed Jul 10, 2013
2 parents 50aaa6b + 5b0620d commit dc5ef1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions drivers/hwmon/lm63.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,8 @@ static struct lm63_data *lm63_update_device(struct device *dev)

mutex_lock(&data->update_lock);

next_update = data->last_updated
+ msecs_to_jiffies(data->update_interval) + 1;

next_update = data->last_updated +
msecs_to_jiffies(data->update_interval);
if (time_after(jiffies, next_update) || !data->valid) {
if (data->config & 0x04) { /* tachometer enabled */
/* order matters for fan1_input */
Expand Down
4 changes: 2 additions & 2 deletions drivers/hwmon/lm90.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ static struct lm90_data *lm90_update_device(struct device *dev)

mutex_lock(&data->update_lock);

next_update = data->last_updated
+ msecs_to_jiffies(data->update_interval) + 1;
next_update = data->last_updated +
msecs_to_jiffies(data->update_interval);
if (time_after(jiffies, next_update) || !data->valid) {
u8 h, l;
u8 alarms;
Expand Down

0 comments on commit dc5ef1f

Please sign in to comment.