aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/via686a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/via686a.c')
-rw-r--r--drivers/hwmon/via686a.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c
index 9a440c8cc520..a25b0542649c 100644
--- a/drivers/hwmon/via686a.c
+++ b/drivers/hwmon/via686a.c
@@ -740,9 +740,10 @@ static void via686a_init_client(struct i2c_client *client)
740 via686a_write_value(client, VIA686A_REG_CONFIG, (reg|0x01)&0x7F); 740 via686a_write_value(client, VIA686A_REG_CONFIG, (reg|0x01)&0x7F);
741 741
742 /* Configure temp interrupt mode for continuous-interrupt operation */ 742 /* Configure temp interrupt mode for continuous-interrupt operation */
743 reg = via686a_read_value(client, VIA686A_REG_TEMP_MODE);
743 via686a_write_value(client, VIA686A_REG_TEMP_MODE, 744 via686a_write_value(client, VIA686A_REG_TEMP_MODE,
744 via686a_read_value(client, VIA686A_REG_TEMP_MODE) & 745 (reg & ~VIA686A_TEMP_MODE_MASK)
745 !(VIA686A_TEMP_MODE_MASK | VIA686A_TEMP_MODE_CONTINUOUS)); 746 | VIA686A_TEMP_MODE_CONTINUOUS);
746} 747}
747 748
748static struct via686a_data *via686a_update_device(struct device *dev) 749static struct via686a_data *via686a_update_device(struct device *dev)