44de19b7a85e007db8aa7000a8bb5ae863ff30da
[openwrt/staging/noltari.git] / target / linux / ipq806x / patches-5.10 / 104-2-drivers-thermal-tsens-Don-t-hardcode-sensor-slope.patch
1 From efa0d50a6c5ec7619371dfe4d3e6ca54b73787d5 Mon Sep 17 00:00:00 2001
2 From: Ansuel Smith <ansuelsmth@gmail.com>
3 Date: Wed, 25 Nov 2020 16:47:21 +0100
4 Subject: [PATCH 02/10] drivers: thermal: tsens: Don't hardcode sensor slope
5
6 Function compute_intercept_slope hardcode the sensor slope to
7 SLOPE_DEFAULT. Change this and use the default value only if a slope is
8 not defined. This is needed for tsens VER_0 that has a hardcoded slope
9 table.
10
11 Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
12 Reviewed-by: Thara Gopinath <thara.gopinath@linaro.org>
13 ---
14 drivers/thermal/qcom/tsens.c | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/drivers/thermal/qcom/tsens.c b/drivers/thermal/qcom/tsens.c
18 index 9a7e991d4bd2..38b9936def1a 100644
19 --- a/drivers/thermal/qcom/tsens.c
20 +++ b/drivers/thermal/qcom/tsens.c
21 @@ -86,7 +86,8 @@ void compute_intercept_slope(struct tsens_priv *priv, u32 *p1,
22 "%s: sensor%d - data_point1:%#x data_point2:%#x\n",
23 __func__, i, p1[i], p2[i]);
24
25 - priv->sensor[i].slope = SLOPE_DEFAULT;
26 + if (!priv->sensor[i].slope)
27 + priv->sensor[i].slope = SLOPE_DEFAULT;
28 if (mode == TWO_PT_CALIB) {
29 /*
30 * slope (m) = adc_code2 - adc_code1 (y2 - y1)/
31 --
32 2.30.2
33