[PATCH v2 13/17] thermal: tegra: enable+check sensor after its setup is finished

From: Bartlomiej Zolnierkiewicz
Date: Wed Oct 17 2018 - 11:54:40 EST


Enable+check sensor after setting zone->tz and programming hwtrips.

Cc: Thierry Reding <thierry.reding@xxxxxxxxx>
Cc: Jonathan Hunter <jonathanh@xxxxxxxxxx>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@xxxxxxxxxxx>
---
drivers/thermal/tegra/soctherm.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c
index 2ac9f81..394b34e 100644
--- a/drivers/thermal/tegra/soctherm.c
+++ b/drivers/thermal/tegra/soctherm.c
@@ -1375,9 +1375,6 @@ static int tegra_soctherm_probe(struct platform_device *pdev)
goto disable_clocks;
}

- thermal_zone_set_mode(z, THERMAL_DEVICE_ENABLED);
- thermal_zone_device_check(z);
-
zone->tz = z;
tegra->thermctl_tzs[soc->ttgs[i]->id] = z;

@@ -1385,6 +1382,9 @@ static int tegra_soctherm_probe(struct platform_device *pdev)
err = tegra_soctherm_set_hwtrips(&pdev->dev, soc->ttgs[i], z);
if (err)
goto disable_clocks;
+
+ thermal_zone_set_mode(z, THERMAL_DEVICE_ENABLED);
+ thermal_zone_device_check(z);
}

soctherm_debug_init(pdev);
--
1.9.1