1 /* SPDX-License-Identifier: GPL-2.0 */
3 * thermal_hwmon.h - Generic Thermal Management hwmon support.
5 * Code based on Intel thermal_core.c. Copyrights of the original code:
6 * Copyright (C) 2008 Intel Corp
10 * Copyright (C) 2013 Texas Instruments
13 #ifndef __THERMAL_HWMON_H__
14 #define __THERMAL_HWMON_H__
16 #include <linux/thermal.h>
18 #ifdef CONFIG_THERMAL_HWMON
19 int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
20 void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
23 thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
29 thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
34 #endif /* __THERMAL_HWMON_H__ */