Commit a37881de authored by Manikandan Elumalai's avatar Manikandan Elumalai Committed by Guenter Roeck

hwmon: (adm1275) Enable adm1278 ADM1278_TEMP1_EN

The adm1278 temp attribute need it for openbmc platform .
This feature not enabled by default, so PMON_CONFIG needs to enable it.
Signed-off-by: default avatarManikandan Elumalai <manikandan.hcl.ers.epl@gmail.com>
Link: https://lore.kernel.org/r/20200622153727.GA9347@cnn
[groeck: Split long line]
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 0ca8bb2c
...@@ -683,11 +683,13 @@ static int adm1275_probe(struct i2c_client *client, ...@@ -683,11 +683,13 @@ static int adm1275_probe(struct i2c_client *client,
tindex = 3; tindex = 3;
info->func[0] |= PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT | info->func[0] |= PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT |
PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT; PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT |
PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP;
/* Enable VOUT if not enabled (it is disabled by default) */ /* Enable VOUT & TEMP1 if not enabled (disabled by default) */
if (!(config & ADM1278_VOUT_EN)) { if ((config & (ADM1278_VOUT_EN | ADM1278_TEMP1_EN)) !=
config |= ADM1278_VOUT_EN; (ADM1278_VOUT_EN | ADM1278_TEMP1_EN)) {
config |= ADM1278_VOUT_EN | ADM1278_TEMP1_EN;
ret = i2c_smbus_write_byte_data(client, ret = i2c_smbus_write_byte_data(client,
ADM1275_PMON_CONFIG, ADM1275_PMON_CONFIG,
config); config);
...@@ -698,9 +700,6 @@ static int adm1275_probe(struct i2c_client *client, ...@@ -698,9 +700,6 @@ static int adm1275_probe(struct i2c_client *client,
} }
} }
if (config & ADM1278_TEMP1_EN)
info->func[0] |=
PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP;
if (config & ADM1278_VIN_EN) if (config & ADM1278_VIN_EN)
info->func[0] |= PMBUS_HAVE_VIN; info->func[0] |= PMBUS_HAVE_VIN;
break; break;
......
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