diff options
| author | Christian Marangi | 2024-05-21 15:38:28 +0000 |
|---|---|---|
| committer | Daniel Golle | 2024-06-01 15:40:10 +0000 |
| commit | 37ff0ea7269271feffaa5bd3042a551b1d735c57 (patch) | |
| tree | 306013ca5fc7b00e43d9ffb2e07093e5fe2daa35 | |
| parent | 611413cc3fec3cee178ffceff6825a87d8f85e47 (diff) | |
| download | openwrt-37ff0ea7269271feffaa5bd3042a551b1d735c57.tar.gz | |
mvebu: disable polling delay for passive trip point for puzzle thermal
We don't have any passive trip point hence we can set the polling delay
for passive trip to 0 effectively disabling this polling.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/mvebu/files-6.6/arch/arm64/boot/dts/marvell/puzzle-thermal.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mvebu/files-6.6/arch/arm64/boot/dts/marvell/puzzle-thermal.dtsi b/target/linux/mvebu/files-6.6/arch/arm64/boot/dts/marvell/puzzle-thermal.dtsi index 093f910558..eb8682b297 100644 --- a/target/linux/mvebu/files-6.6/arch/arm64/boot/dts/marvell/puzzle-thermal.dtsi +++ b/target/linux/mvebu/files-6.6/arch/arm64/boot/dts/marvell/puzzle-thermal.dtsi @@ -1,5 +1,5 @@ #define PUZZLE_FAN_THERMAL(_cname, _fan) \ - polling-delay-passive = <500>; \ + polling-delay-passive = <0>; \ polling-delay = <1000>; \ \ trips { \ |