Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2706
b: refs/heads/master
c: abc0192
h: refs/heads/master
v: v3
  • Loading branch information
Grant Coady authored and Greg Kroah-Hartman committed Jun 22, 2005
1 parent 967f87f commit aa2c41a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: b9826b3ee8faa468a26782e3bf37716a73d96730
refs/heads/master: abc01922477104e8d72b494902aff37135c409e7
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/w83627hf.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static inline u8 DIV_TO_REG(long val)
{
int i;
val = SENSORS_LIMIT(val, 1, 128) >> 1;
for (i = 0; i < 6; i++) {
for (i = 0; i < 7; i++) {
if (val == 0)
break;
val >>= 1;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/w83781d.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ DIV_TO_REG(long val, enum chips type)
val = SENSORS_LIMIT(val, 1,
((type == w83781d
|| type == as99127f) ? 8 : 128)) >> 1;
for (i = 0; i < 6; i++) {
for (i = 0; i < 7; i++) {
if (val == 0)
break;
val >>= 1;
Expand Down

0 comments on commit aa2c41a

Please sign in to comment.