diff options
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/w83627hf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c index 181f4e8590b1..185ae1b8027d 100644 --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c | |||
@@ -1515,6 +1515,11 @@ static void __devinit w83627hf_init_device(struct platform_device *pdev) | |||
1515 | (w83627hf_read_value(data, | 1515 | (w83627hf_read_value(data, |
1516 | W83781D_REG_CONFIG) & 0xf7) | 1516 | W83781D_REG_CONFIG) & 0xf7) |
1517 | | 0x01); | 1517 | | 0x01); |
1518 | |||
1519 | /* Enable VBAT monitoring if needed */ | ||
1520 | tmp = w83627hf_read_value(data, W83781D_REG_VBAT); | ||
1521 | if (!(tmp & 0x01)) | ||
1522 | w83627hf_write_value(data, W83781D_REG_VBAT, tmp | 0x01); | ||
1518 | } | 1523 | } |
1519 | 1524 | ||
1520 | static void w83627hf_update_fan_div(struct w83627hf_data *data) | 1525 | static void w83627hf_update_fan_div(struct w83627hf_data *data) |