blob: a160b9d62dd0a1bc66147375d52bfce309a1024b [file] [log] [blame]
Lina Iyer7e3c0382018-05-07 11:52:29 -06001/* SPDX-License-Identifier: GPL-2.0 */
Eduardo Valentin0dd88792013-07-03 15:14:28 -04002/*
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 Valentin0dd88792013-07-03 15:14:28 -040012 */
13#ifndef __THERMAL_HWMON_H__
14#define __THERMAL_HWMON_H__
15
16#include <linux/thermal.h>
17
18#ifdef CONFIG_THERMAL_HWMON
19int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
20void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
21#else
Eduardo Valentin03334ba2019-01-02 00:34:03 +000022static inline int
Eduardo Valentin0dd88792013-07-03 15:14:28 -040023thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
24{
25 return 0;
26}
27
Eduardo Valentin03334ba2019-01-02 00:34:03 +000028static inline void
Eduardo Valentin0dd88792013-07-03 15:14:28 -040029thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
30{
31}
32#endif
33
34#endif /* __THERMAL_HWMON_H__ */