summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHyungwoo Yang <hyungwooy@nvidia.com>2013-01-03 19:33:36 -0500
committerNicolin Chen <nicolinc@nvidia.com>2017-08-14 21:38:52 -0400
commitde4dbca70de6809b3681a36a8ac5c4c19244ebca (patch)
tree1b9093f9fbba51325941bdf5ba7c40dc17f3e160 /include
parente7ebdf7eee0366c986bb4264ce03daf2cf7d15a3 (diff)
drivers: misc: therm_est: add get_trend using dT/dt
Added get_trend to use dTemp/dTime in trend calculation. Bug 1158323 Change-Id: I7a3e80a768e3ebd72f657222eb0d3b546a3fabba Signed-off-by: Hyungwoo Yang <hyungwooy@nvidia.com> Reviewed-on: http://git-master/r/188582
Diffstat (limited to 'include')
-rw-r--r--include/linux/therm_est.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/therm_est.h b/include/linux/therm_est.h
index 8d48ed1db..514c5aeac 100644
--- a/include/linux/therm_est.h
+++ b/include/linux/therm_est.h
@@ -40,6 +40,8 @@ struct therm_est_data {
40 long polling_period; 40 long polling_period;
41 int passive_delay; 41 int passive_delay;
42 int ndevs; 42 int ndevs;
43 int tc1;
44 int tc2;
43 struct therm_est_subdevice devs[]; 45 struct therm_est_subdevice devs[];
44}; 46};
45 47