diff options
author | Eduardo Valentin <eduardo.valentin@ti.com> | 2013-04-05 12:32:29 +0000 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-04-15 09:39:02 +0800 |
commit | 837b26bb2e4a83d224e725f07a1d9ca824bf905c (patch) | |
tree | 7dc6a3c904b5a434f0c1fb48daa99e9dbbb704a0 /include/linux/thermal.h | |
parent | 63c4d919cf66b1b3ffa7861bddb50a697914af5b (diff) |
thermal: expose thermal_zone_get_temp API
This patch exports the thermal_zone_get_temp API so that driver
writers can fetch temperature of thermal zones managed by other
drivers.
Acked-by: Durgadoss R <durgadoss.r@intel.com>
Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'include/linux/thermal.h')
-rw-r--r-- | include/linux/thermal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 9af2f3a99658..ec2b886f9d96 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h @@ -240,6 +240,7 @@ struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, const struct thermal_cooling_device_ops *); void thermal_cooling_device_unregister(struct thermal_cooling_device *); struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name); +int thermal_zone_get_temp(struct thermal_zone_device *tz, unsigned long *temp); int get_tz_trend(struct thermal_zone_device *, int); struct thermal_instance *get_thermal_instance(struct thermal_zone_device *, |