diff options
author | Eduardo Valentin <edubezval@gmail.com> | 2016-11-08 06:08:57 +0100 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2016-11-23 03:06:12 +0100 |
commit | ba78da443bd5cae5079d2b1e8174d3a3cb040adb (patch) | |
tree | 48d74c80ba7f934891d2ecc4613a73ea54a6c6c7 | |
parent | thermal: core: split available_policies_show() (diff) | |
download | linux-ba78da443bd5cae5079d2b1e8174d3a3cb040adb.tar.xz linux-ba78da443bd5cae5079d2b1e8174d3a3cb040adb.zip |
thermal: core: move to_thermal_zone() macro to header file
Simply making this macro available to other thermal core
files.
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
-rw-r--r-- | drivers/thermal/thermal_core.c | 3 | ||||
-rw-r--r-- | drivers/thermal/thermal_core.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 3d5118473eb0..f5b519a9f567 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -800,9 +800,6 @@ int thermal_build_list_of_policies(char *buf) /* sys I/F for thermal zone */ -#define to_thermal_zone(_dev) \ - container_of(_dev, struct thermal_zone_device, device) - static ssize_t type_show(struct device *dev, struct device_attribute *attr, char *buf) { diff --git a/drivers/thermal/thermal_core.h b/drivers/thermal/thermal_core.h index 8994d2a379c3..097abee34633 100644 --- a/drivers/thermal/thermal_core.h +++ b/drivers/thermal/thermal_core.h @@ -54,6 +54,9 @@ struct thermal_instance { unsigned int weight; /* The weight of the cooling device */ }; +#define to_thermal_zone(_dev) \ + container_of(_dev, struct thermal_zone_device, device) + int thermal_register_governor(struct thermal_governor *); void thermal_unregister_governor(struct thermal_governor *); void thermal_zone_device_rebind_exception(struct thermal_zone_device *, |