ARM: dts: sun4i-a10: fix cpu_alert temperature
authorClément Péron <peron.clem@gmail.com>
Sat, 3 Oct 2020 10:03:32 +0000 (12:03 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Mon, 5 Oct 2020 09:36:58 +0000 (11:36 +0200)
When running dtbs_check thermal_zone warn about the
temperature declared.

thermal-zones: cpu-thermal:trips:cpu-alert0:temperature:0:0: 850000 is greater than the maximum of 200000

It's indeed wrong the real value is 85°C and not 850°C.

Signed-off-by: Clément Péron <peron.clem@gmail.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20201003100332.431178-1-peron.clem@gmail.com
arch/arm/boot/dts/sun4i-a10.dtsi

index 0f95a6e..1c5a666 100644 (file)
                        trips {
                                cpu_alert0: cpu-alert0 {
                                        /* milliCelsius */
-                                       temperature = <850000>;
+                                       temperature = <85000>;
                                        hysteresis = <2000>;
                                        type = "passive";
                                };