diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-11-19 11:33:51 +0400 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-01-04 11:22:36 +0400 |
commit | d069015e268bcac6c8bd8997b3235f5f977d3ab6 (patch) | |
tree | 907bf00966fcb2fa3261f7a81ec6212ca3d71f0e /include/linux/thermal.h | |
parent | 5f738967e89584f99c6a11c6bf09b16c50b6a03e (diff) | |
download | linux-d069015e268bcac6c8bd8997b3235f5f977d3ab6.tar.xz |
Introduce THERMAL_TREND_RAISE_FULL and THERMAL_TREND_DROP_FULL
These two new thermal_trend types are used to tell the governor
that the temeprature is raising/dropping quickly.
Thermal cooling governors should handle this situation and make
proper decisions, e.g. set cooling state to upper/lower limit directly
instead of one step each time.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'include/linux/thermal.h')
-rw-r--r-- | include/linux/thermal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index fe82022478e7..883bcda7e1e4 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h @@ -74,6 +74,8 @@ enum thermal_trend { THERMAL_TREND_STABLE, /* temperature is stable */ THERMAL_TREND_RAISING, /* temperature is raising */ THERMAL_TREND_DROPPING, /* temperature is dropping */ + THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */ + THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */ }; /* Events supported by Thermal Netlink */ |