hwmon: (max34440) Fix resetting temperature history
Temperature history is reset by writing 0x8000 into the peak temperature register, not 0xffff. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
parent
c1c1a3d012
commit
dc91ad8e84
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ static int max34440_write_word_data(struct i2c_client *client, int page,
|
||||||
case PMBUS_VIRT_RESET_TEMP_HISTORY:
|
case PMBUS_VIRT_RESET_TEMP_HISTORY:
|
||||||
ret = pmbus_write_word_data(client, page,
|
ret = pmbus_write_word_data(client, page,
|
||||||
MAX34440_MFR_TEMPERATURE_PEAK,
|
MAX34440_MFR_TEMPERATURE_PEAK,
|
||||||
0xffff);
|
0x8000);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret = -ENODATA;
|
ret = -ENODATA;
|
||||||
|
|
Loading…
Reference in a new issue