aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/ad7414.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/ad7414.c')
-rw-r--r--drivers/hwmon/ad7414.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/ad7414.c b/drivers/hwmon/ad7414.c
index 36465006c4fb..06d2d60d1fd0 100644
--- a/drivers/hwmon/ad7414.c
+++ b/drivers/hwmon/ad7414.c
@@ -50,7 +50,8 @@ struct ad7414_data {
50/* REG: (0.25C/bit, two's complement) << 6 */ 50/* REG: (0.25C/bit, two's complement) << 6 */
51static inline int ad7414_temp_from_reg(s16 reg) 51static inline int ad7414_temp_from_reg(s16 reg)
52{ 52{
53 /* use integer division instead of equivalent right shift to 53 /*
54 * use integer division instead of equivalent right shift to
54 * guarantee arithmetic shift and preserve the sign 55 * guarantee arithmetic shift and preserve the sign
55 */ 56 */
56 return ((int)reg / 64) * 250; 57 return ((int)reg / 64) * 250;