diff options
Diffstat (limited to 'drivers/hwmon/w83l785ts.c')
-rw-r--r-- | drivers/hwmon/w83l785ts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/w83l785ts.c b/drivers/hwmon/w83l785ts.c index fcb2c39b04fd..db12a620b331 100644 --- a/drivers/hwmon/w83l785ts.c +++ b/drivers/hwmon/w83l785ts.c | |||
@@ -74,7 +74,7 @@ I2C_CLIENT_INSMOD_1(w83l785ts); | |||
74 | * The W83L785TS-S uses signed 8-bit values. | 74 | * The W83L785TS-S uses signed 8-bit values. |
75 | */ | 75 | */ |
76 | 76 | ||
77 | #define TEMP_FROM_REG(val) ((val & 0x80 ? val-0x100 : val) * 1000) | 77 | #define TEMP_FROM_REG(val) ((val) * 1000) |
78 | 78 | ||
79 | /* | 79 | /* |
80 | * Functions declaration | 80 | * Functions declaration |
@@ -112,7 +112,7 @@ struct w83l785ts_data { | |||
112 | unsigned long last_updated; /* in jiffies */ | 112 | unsigned long last_updated; /* in jiffies */ |
113 | 113 | ||
114 | /* registers values */ | 114 | /* registers values */ |
115 | u8 temp[2]; /* 0: input | 115 | s8 temp[2]; /* 0: input |
116 | 1: critical limit */ | 116 | 1: critical limit */ |
117 | }; | 117 | }; |
118 | 118 | ||