thermal_hwmon.h 906 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* SPDX-License-Identifier: GPL-2.0 */
  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>
  12. */
  13. #ifndef __THERMAL_HWMON_H__
  14. #define __THERMAL_HWMON_H__
  15. #include <linux/thermal.h>
  16. #ifdef CONFIG_THERMAL_HWMON
  17. int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
  18. void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
  19. #else
  20. static inline int
  21. thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
  22. {
  23. return 0;
  24. }
  25. static inline void
  26. thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
  27. {
  28. }
  29. #endif
  30. #endif /* __THERMAL_HWMON_H__ */