airoha: an7583: adjust thermal polling delays
The CPU thermal zone in an7583.dtsi sets the polling-delay-passive to 10000 ms while the polling-delay is 5000 ms. The thermal driver rejects zones whose passive polling delay is greater than the regular polling delay, causing thermal_zone0 registration to fail with -EINVAL. Reduce the passive polling delay to 1000 ms to fix thermal_zone0 registration. Boot log: thermal_sys: Failed to register thermal zone cpu-thermal: -22 ... register thermal zone sensor failed ... probe with driver airoha-thermal failed with error -22 Signed-off-by: Yubo Zhang <zyb_1998@outlook.com> Link: https://github.com/openwrt/openwrt/pull/24337 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
This commit is contained in:
parent
3ae630b5b8
commit
1ea29a6f49
1 changed files with 1 additions and 1 deletions
|
|
@ -261,7 +261,7 @@
|
|||
|
||||
thermal-zones {
|
||||
cpu_thermal: cpu-thermal {
|
||||
polling-delay-passive = <10000>;
|
||||
polling-delay-passive = <1000>;
|
||||
polling-delay = <5000>;
|
||||
|
||||
thermal-sensors = <&thermal 0>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue