Lina Iyer | 7e3c038 | 2018-05-07 11:52:29 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 2 | /* |
| 3 | * thermal_hwmon.h - Generic Thermal Management hwmon support. |
| 4 | * |
| 5 | * Code based on Intel thermal_core.c. Copyrights of the original code: |
| 6 | * Copyright (C) 2008 Intel Corp |
| 7 | * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com> |
| 8 | * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com> |
| 9 | * |
| 10 | * Copyright (C) 2013 Texas Instruments |
| 11 | * Copyright (C) 2013 Eduardo Valentin <eduardo.valentin@ti.com> |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 12 | */ |
| 13 | #ifndef __THERMAL_HWMON_H__ |
| 14 | #define __THERMAL_HWMON_H__ |
| 15 | |
| 16 | #include <linux/thermal.h> |
| 17 | |
| 18 | #ifdef CONFIG_THERMAL_HWMON |
| 19 | int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz); |
Andrey Smirnov | c7fc403 | 2019-12-10 08:41:52 -0800 | [diff] [blame] | 20 | int devm_thermal_add_hwmon_sysfs(struct thermal_zone_device *tz); |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 21 | void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz); |
| 22 | #else |
Eduardo Valentin | 03334ba | 2019-01-02 00:34:03 +0000 | [diff] [blame] | 23 | static inline int |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 24 | thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) |
| 25 | { |
| 26 | return 0; |
| 27 | } |
| 28 | |
Andrey Smirnov | c7fc403 | 2019-12-10 08:41:52 -0800 | [diff] [blame] | 29 | static inline int |
| 30 | devm_thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) |
| 31 | { |
| 32 | return 0; |
| 33 | } |
| 34 | |
Eduardo Valentin | 03334ba | 2019-01-02 00:34:03 +0000 | [diff] [blame] | 35 | static inline void |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 36 | thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) |
| 37 | { |
| 38 | } |
| 39 | #endif |
| 40 | |
| 41 | #endif /* __THERMAL_HWMON_H__ */ |