Commit 13506e2a authored by Martin Peres's avatar Martin Peres Committed by Ben Skeggs

drm/nouveau/therm-ic: the temperature is off by sensor_constant, warn the user

Signed-off-by: default avatarMartin Peres <martin.peres@labri.fr>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent c4ce9246
...@@ -313,8 +313,8 @@ nouveau_therm_create_(struct nouveau_object *parent, ...@@ -313,8 +313,8 @@ nouveau_therm_create_(struct nouveau_object *parent,
int int
nouveau_therm_preinit(struct nouveau_therm *therm) nouveau_therm_preinit(struct nouveau_therm *therm)
{ {
nouveau_therm_ic_ctor(therm);
nouveau_therm_sensor_ctor(therm); nouveau_therm_sensor_ctor(therm);
nouveau_therm_ic_ctor(therm);
nouveau_therm_fan_ctor(therm); nouveau_therm_fan_ctor(therm);
nouveau_therm_fan_mode(therm, NOUVEAU_THERM_CTRL_NONE); nouveau_therm_fan_mode(therm, NOUVEAU_THERM_CTRL_NONE);
......
...@@ -32,6 +32,7 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c, ...@@ -32,6 +32,7 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c,
struct i2c_board_info *info) struct i2c_board_info *info)
{ {
struct nouveau_therm_priv *priv = (void *)nouveau_therm(i2c); struct nouveau_therm_priv *priv = (void *)nouveau_therm(i2c);
struct nvbios_therm_sensor *sensor = &priv->bios_sensor;
struct i2c_client *client; struct i2c_client *client;
request_module("%s%s", I2C_MODULE_PREFIX, info->type); request_module("%s%s", I2C_MODULE_PREFIX, info->type);
...@@ -46,8 +47,9 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c, ...@@ -46,8 +47,9 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c,
} }
nv_info(priv, nv_info(priv,
"Found an %s at address 0x%x (controlled by lm_sensors)\n", "Found an %s at address 0x%x (controlled by lm_sensors, "
info->type, info->addr); "temp offset %+i C)\n",
info->type, info->addr, sensor->offset_constant);
priv->ic = client; priv->ic = client;
return true; return true;
......
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