mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
hwmon: (w83627hf) Enable VBAT monitoring
If VBAT monitoring is disabled, enable it. Bug reported on the lm-sensors trac system: http://lm-sensors.org/ticket/2282 This is the exact same patch that was applied to the w83627ehf driver 6 months ago. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
This commit is contained in:
parent
cbe311f2a4
commit
ef878b11ba
1 changed files with 5 additions and 0 deletions
|
@ -1515,6 +1515,11 @@ static void __devinit w83627hf_init_device(struct platform_device *pdev)
|
||||||
(w83627hf_read_value(data,
|
(w83627hf_read_value(data,
|
||||||
W83781D_REG_CONFIG) & 0xf7)
|
W83781D_REG_CONFIG) & 0xf7)
|
||||||
| 0x01);
|
| 0x01);
|
||||||
|
|
||||||
|
/* Enable VBAT monitoring if needed */
|
||||||
|
tmp = w83627hf_read_value(data, W83781D_REG_VBAT);
|
||||||
|
if (!(tmp & 0x01))
|
||||||
|
w83627hf_write_value(data, W83781D_REG_VBAT, tmp | 0x01);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void w83627hf_update_fan_div(struct w83627hf_data *data)
|
static void w83627hf_update_fan_div(struct w83627hf_data *data)
|
||||||
|
|
Loading…
Reference in a new issue