From: Jean Delvare Date: Sat, 9 Jun 2007 14:11:16 +0000 (-0400) Subject: hwmon/via686a: Temperature interrupt configuration fix X-Git-Tag: accepted/tizen/common/20141203.182822~29289^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58fe0809cc02d51b7aca05ee858c8bbb0af9e0b6;p=platform%2Fkernel%2Flinux-arm64.git hwmon/via686a: Temperature interrupt configuration fix Fix the writing of the temperature interrupt configuration. The old code was working only by accident. Signed-off-by: Jean Delvare --- diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c index 9a440c8..a25b054 100644 --- a/drivers/hwmon/via686a.c +++ b/drivers/hwmon/via686a.c @@ -740,9 +740,10 @@ static void via686a_init_client(struct i2c_client *client) via686a_write_value(client, VIA686A_REG_CONFIG, (reg|0x01)&0x7F); /* Configure temp interrupt mode for continuous-interrupt operation */ + reg = via686a_read_value(client, VIA686A_REG_TEMP_MODE); via686a_write_value(client, VIA686A_REG_TEMP_MODE, - via686a_read_value(client, VIA686A_REG_TEMP_MODE) & - !(VIA686A_TEMP_MODE_MASK | VIA686A_TEMP_MODE_CONTINUOUS)); + (reg & ~VIA686A_TEMP_MODE_MASK) + | VIA686A_TEMP_MODE_CONTINUOUS); } static struct via686a_data *via686a_update_device(struct device *dev)