mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
4a16c190f7
The devres variant of thermal_add_hwmon_sysfs() only takes the thermal zone structure pointer as parameter. Actually, it uses the tz->device to add it in the devres list. It is preferable to use the device registering the thermal zone instead of the thermal zone device itself. That prevents the driver accessing the thermal zone structure internals and it is from my POV more correct regarding how devm_ is used. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> #amlogic_thermal Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com> #sun8i_thermal Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> #MediaTek auxadc Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* thermal_hwmon.h - Generic Thermal Management hwmon support.
|
|
*
|
|
* Code based on Intel thermal_core.c. Copyrights of the original code:
|
|
* Copyright (C) 2008 Intel Corp
|
|
* Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
|
|
* Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
|
|
*
|
|
* Copyright (C) 2013 Texas Instruments
|
|
* Copyright (C) 2013 Eduardo Valentin <eduardo.valentin@ti.com>
|
|
*/
|
|
#ifndef __THERMAL_HWMON_H__
|
|
#define __THERMAL_HWMON_H__
|
|
|
|
#include <linux/thermal.h>
|
|
|
|
#ifdef CONFIG_THERMAL_HWMON
|
|
int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
|
|
int devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz);
|
|
void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
|
|
#else
|
|
static inline int
|
|
thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int
|
|
devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void
|
|
thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif /* __THERMAL_HWMON_H__ */
|