summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds2012-07-13 20:01:03 +0200
committerLinus Torvalds2012-07-13 20:01:03 +0200
commitac7d181e323a888015e19e2e4d776095a0433787 (patch)
tree014519b18f078b0171c1bf1e1bb54157a8ad073e
parentMerge tag 'nfs-for-3.5-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs (diff)
parenthwmon: (it87) Preserve configuration register bits on init (diff)
downloadkernel-qcow2-linux-ac7d181e323a888015e19e2e4d776095a0433787.tar.gz
kernel-qcow2-linux-ac7d181e323a888015e19e2e4d776095a0433787.tar.xz
kernel-qcow2-linux-ac7d181e323a888015e19e2e4d776095a0433787.zip
Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging
Please pull one hwmon subsystem fix from Jean Delvare. * 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging: hwmon: (it87) Preserve configuration register bits on init
-rw-r--r--drivers/hwmon/it87.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index e7701d99f8e8..f1de3979181f 100644
--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -2341,7 +2341,7 @@ static void __devinit it87_init_device(struct platform_device *pdev)
/* Start monitoring */
it87_write_value(data, IT87_REG_CONFIG,
- (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
+ (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
| (update_vbat ? 0x41 : 0x01));
}