aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/lm78.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c
index 9efadfc851bc..c1eb464f0fd0 100644
--- a/drivers/hwmon/lm78.c
+++ b/drivers/hwmon/lm78.c
@@ -108,7 +108,7 @@ static inline int FAN_FROM_REG(u8 val, int div)
108 * TEMP: mC (-128C to +127C) 108 * TEMP: mC (-128C to +127C)
109 * REG: 1C/bit, two's complement 109 * REG: 1C/bit, two's complement
110 */ 110 */
111static inline s8 TEMP_TO_REG(int val) 111static inline s8 TEMP_TO_REG(long val)
112{ 112{
113 int nval = clamp_val(val, -128000, 127000) ; 113 int nval = clamp_val(val, -128000, 127000) ;
114 return nval < 0 ? (nval - 500) / 1000 : (nval + 500) / 1000; 114 return nval < 0 ? (nval - 500) / 1000 : (nval + 500) / 1000;