提交 91ff81cf 编写于 作者: S Sachin Kamat 提交者: Eduardo Valentin

thermal: exynos: Fix potential NULL pointer dereference

NULL pointer was being dereferenced in its own error message.
Changed it to the correct device pointer.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: NEduardo Valentin <eduardo.valentin@ti.com>
上级 02ae59dc
......@@ -53,7 +53,7 @@ static int exynos_set_mode(struct thermal_zone_device *thermal,
{
struct exynos_thermal_zone *th_zone = thermal->devdata;
if (!th_zone) {
dev_err(th_zone->sensor_conf->dev,
dev_err(&thermal->device,
"thermal zone not registered\n");
return 0;
}
......@@ -231,7 +231,7 @@ static int exynos_get_temp(struct thermal_zone_device *thermal,
void *data;
if (!th_zone->sensor_conf) {
dev_err(th_zone->sensor_conf->dev,
dev_err(&thermal->device,
"Temperature sensor not initialised\n");
return -EINVAL;
}
......@@ -251,7 +251,7 @@ static int exynos_set_emul_temp(struct thermal_zone_device *thermal,
struct exynos_thermal_zone *th_zone = thermal->devdata;
if (!th_zone->sensor_conf) {
dev_err(th_zone->sensor_conf->dev,
dev_err(&thermal->device,
"Temperature sensor not initialised\n");
return -EINVAL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册