summaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2023-04-19 10:33:39 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2023-04-27 19:20:12 +0200
commitba7894be5e57d5c154c793e5411889275e68644e (patch)
tree5439061234f256c5983e64b3415a59902818112d /drivers/thermal
parent7cefbaf081eb7c114299f7478ed4fa0d90ec90bb (diff)
downloadlinux-stable-ba7894be5e57d5c154c793e5411889275e68644e.tar.gz
linux-stable-ba7894be5e57d5c154c793e5411889275e68644e.tar.bz2
linux-stable-ba7894be5e57d5c154c793e5411889275e68644e.zip
thermal: intel: pch_thermal: Use thermal driver device to write a trace
The pch_critical() callback accesses the thermal zone device structure internals, it dereferences the thermal zone struct device and the 'type'. Use the available accessors instead of accessing the structure directly. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/intel/intel_pch_thermal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/thermal/intel/intel_pch_thermal.c b/drivers/thermal/intel/intel_pch_thermal.c
index dce50d239357..b3905e34c507 100644
--- a/drivers/thermal/intel/intel_pch_thermal.c
+++ b/drivers/thermal/intel/intel_pch_thermal.c
@@ -127,7 +127,8 @@ static int pch_thermal_get_temp(struct thermal_zone_device *tzd, int *temp)
static void pch_critical(struct thermal_zone_device *tzd)
{
- dev_dbg(&tzd->device, "%s: critical temperature reached\n", tzd->type);
+ dev_dbg(thermal_zone_device(tzd), "%s: critical temperature reached\n",
+ thermal_zone_device_type(tzd));
}
static struct thermal_zone_device_ops tzd_ops = {