Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1595782 > unrolled thread

[PATCH v2 6/8] thermal: ti-soc-thermal: Fetch slope and offset from DT

Started byKeerthy <j-keerthy@ti.com>
First post2017-03-09 09:20 +0100
Last post2017-03-09 09:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 6/8] thermal: ti-soc-thermal: Fetch slope and offset from DT Keerthy <j-keerthy@ti.com> - 2017-03-09 09:20 +0100

#1595782 — [PATCH v2 6/8] thermal: ti-soc-thermal: Fetch slope and offset from DT

FromKeerthy <j-keerthy@ti.com>
Date2017-03-09 09:20 +0100
Subject[PATCH v2 6/8] thermal: ti-soc-thermal: Fetch slope and offset from DT
Message-ID<tj1sK-2tF-9@gated-at.bofh.it>
Currently slope and offset values for calculating the hot spot
temperature of a thermal zone is being taken directly from driver
data. So fetch them from device tree.

Signed-off-by: Keerthy <j-keerthy@ti.com>
---
 drivers/thermal/ti-soc-thermal/ti-thermal-common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/thermal/ti-soc-thermal/ti-thermal-common.c b/drivers/thermal/ti-soc-thermal/ti-thermal-common.c
index 0586bd0..2054a5c 100644
--- a/drivers/thermal/ti-soc-thermal/ti-thermal-common.c
+++ b/drivers/thermal/ti-soc-thermal/ti-thermal-common.c
@@ -96,8 +96,8 @@ static inline int __ti_thermal_get_temp(void *devdata, int *temp)
 		return ret;
 
 	/* Default constants */
-	slope = s->slope;
-	constant = s->constant;
+	slope = thermal_zone_get_slope(data->ti_thermal);
+	constant = thermal_zone_get_offset(data->ti_thermal);
 
 	pcb_tz = data->pcb_tz;
 	/* In case pcb zone is available, use the extrapolation rule with it */
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web