diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-16 10:56:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-16 10:56:57 -0400 |
commit | a455eda33faafcaac1effb31d682765b14ef868c (patch) | |
tree | 9a4ca7da47300ca9081445539ff337efcead4b6b /include/linux/thermal.h | |
parent | cc7ce90153e74f8266eefee9fba466faa1a2d5df (diff) | |
parent | 37bcec5d9f71bd13142a97d2196b293c9ac23823 (diff) |
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal
Pull thermal soc updates from Eduardo Valentin:
- thermal core has a new devm_* API for registering cooling devices. I
took the entire series, that is why you see changes on drivers/hwmon
in this pull (Guenter Roeck)
- rockchip thermal driver gains support to PX30 SoC (Elaine Zhang)
- the generic-adc thermal driver now considers the lookup table DT
property as optional (Jean-Francois Dagenais)
- Refactoring of tsens thermal driver (Amit Kucheria)
- Cleanups on cpu cooling driver (Daniel Lezcano)
- broadcom thermal driver dropped support to ACPI (Srinath Mannam)
- tegra thermal driver gains support to OC hw throttle and GPU throtle
(Wei Ni)
- Fixes in several thermal drivers.
* 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal: (59 commits)
hwmon: (pwm-fan) Use devm_thermal_of_cooling_device_register
hwmon: (npcm750-pwm-fan) Use devm_thermal_of_cooling_device_register
hwmon: (mlxreg-fan) Use devm_thermal_of_cooling_device_register
hwmon: (gpio-fan) Use devm_thermal_of_cooling_device_register
hwmon: (aspeed-pwm-tacho) Use devm_thermal_of_cooling_device_register
thermal: rcar_gen3_thermal: Fix to show correct trip points number
thermal: rcar_thermal: update calculation formula for R-Car Gen3 SoCs
thermal: cpu_cooling: Actually trace CPU load in thermal_power_cpu_get_power
thermal: rockchip: Support the PX30 SoC in thermal driver
dt-bindings: rockchip-thermal: Support the PX30 SoC compatible
thermal: rockchip: fix up the tsadc pinctrl setting error
thermal: broadcom: Remove ACPI support
thermal: Fix build error of missing devm_ioremap_resource on UM
thermal/drivers/cpu_cooling: Remove pointless field
thermal/drivers/cpu_cooling: Add Software Package Data Exchange (SPDX)
thermal/drivers/cpu_cooling: Fixup the header and copyright
thermal/drivers/cpu_cooling: Remove pointless test in power2state()
thermal: rcar_gen3_thermal: disable interrupt in .remove
thermal: rcar_gen3_thermal: fix interrupt type
thermal: Introduce devm_thermal_of_cooling_device_register
...
Diffstat (limited to 'include/linux/thermal.h')
-rw-r--r-- | include/linux/thermal.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 5f4705f46c2f..4a22099ed8c0 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h | |||
@@ -447,6 +447,11 @@ struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, | |||
447 | struct thermal_cooling_device * | 447 | struct thermal_cooling_device * |
448 | thermal_of_cooling_device_register(struct device_node *np, char *, void *, | 448 | thermal_of_cooling_device_register(struct device_node *np, char *, void *, |
449 | const struct thermal_cooling_device_ops *); | 449 | const struct thermal_cooling_device_ops *); |
450 | struct thermal_cooling_device * | ||
451 | devm_thermal_of_cooling_device_register(struct device *dev, | ||
452 | struct device_node *np, | ||
453 | char *type, void *devdata, | ||
454 | const struct thermal_cooling_device_ops *ops); | ||
450 | void thermal_cooling_device_unregister(struct thermal_cooling_device *); | 455 | void thermal_cooling_device_unregister(struct thermal_cooling_device *); |
451 | struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name); | 456 | struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name); |
452 | int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp); | 457 | int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp); |
@@ -503,6 +508,14 @@ static inline struct thermal_cooling_device * | |||
503 | thermal_of_cooling_device_register(struct device_node *np, | 508 | thermal_of_cooling_device_register(struct device_node *np, |
504 | char *type, void *devdata, const struct thermal_cooling_device_ops *ops) | 509 | char *type, void *devdata, const struct thermal_cooling_device_ops *ops) |
505 | { return ERR_PTR(-ENODEV); } | 510 | { return ERR_PTR(-ENODEV); } |
511 | static inline struct thermal_cooling_device * | ||
512 | devm_thermal_of_cooling_device_register(struct device *dev, | ||
513 | struct device_node *np, | ||
514 | char *type, void *devdata, | ||
515 | const struct thermal_cooling_device_ops *ops) | ||
516 | { | ||
517 | return ERR_PTR(-ENODEV); | ||
518 | } | ||
506 | static inline void thermal_cooling_device_unregister( | 519 | static inline void thermal_cooling_device_unregister( |
507 | struct thermal_cooling_device *cdev) | 520 | struct thermal_cooling_device *cdev) |
508 | { } | 521 | { } |