Commit 2a29db08 authored by Grant Peltier's avatar Grant Peltier Committed by Guenter Roeck

hwmon: (pmbus/isl68137) remove READ_TEMPERATURE_3 for RAA228228

The initial version of the RAA228228 datasheet claimed that the device
supported READ_TEMPERATURE_3 but not READ_TEMPERATURE_1. It has since been
discovered that the datasheet was incorrect. The RAA228228 does support
READ_TEMPERATURE_1 but does not support READ_TEMPERATURE_3.
Signed-off-by: default avatarGrant Peltier <grantpeltier93@gmail.com>
Fixes: 51fb91ed ("hwmon: (pmbus/isl68137) remove READ_TEMPERATURE_1 telemetry for RAA228228")
Link: https://lore.kernel.org/r/20210514211954.GA24646@raspberrypiSigned-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent c2a338c9
...@@ -244,8 +244,8 @@ static int isl68137_probe(struct i2c_client *client) ...@@ -244,8 +244,8 @@ static int isl68137_probe(struct i2c_client *client)
info->read_word_data = raa_dmpvr2_read_word_data; info->read_word_data = raa_dmpvr2_read_word_data;
break; break;
case raa_dmpvr2_2rail_nontc: case raa_dmpvr2_2rail_nontc:
info->func[0] &= ~PMBUS_HAVE_TEMP; info->func[0] &= ~PMBUS_HAVE_TEMP3;
info->func[1] &= ~PMBUS_HAVE_TEMP; info->func[1] &= ~PMBUS_HAVE_TEMP3;
fallthrough; fallthrough;
case raa_dmpvr2_2rail: case raa_dmpvr2_2rail:
info->pages = 2; info->pages = 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment