From c7632eff2deab3add0c503be4264c91a21c2fe17 Mon Sep 17 00:00:00 2001 From: Akari Tsuyukusa Date: Mon, 29 Jun 2026 21:09:35 +0900 Subject: [PATCH] arm: dts: mediatek: mt6589: Fix timer interrupt trigger type MT6589 uses IRQ_TYPE_LEVEL_LOW for arch timer, but I sent a patch using IRQ_TYPE_LEVEL_HIGH. The timer worked correctly regardless of whether IRQ_TYPE_LEVEL_LOW or IRQ_TYPE_LEVEL_HIGH was used in the Device Tree, therefore, there is no actual impact. However, this is not a correct description of the hardware so correct it. Fixes: 2a5d54507c68 ("arm: dts: mediatek: mt6589: Add Arm Generic Timer node") Signed-off-by: Akari Tsuyukusa --- arch/arm/boot/dts/mediatek/mt6589.dtsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/mediatek/mt6589.dtsi b/arch/arm/boot/dts/mediatek/mt6589.dtsi index 46dea445742b27..df3b7bfeac335d 100644 --- a/arch/arm/boot/dts/mediatek/mt6589.dtsi +++ b/arch/arm/boot/dts/mediatek/mt6589.dtsi @@ -45,10 +45,10 @@ timer { compatible = "arm,armv7-timer"; interrupt-parent = <&gic>; - interrupts = , - , - , - ; + interrupts = , + , + , + ; clock-frequency = <13000000>; arm,cpu-registers-not-fw-configured; };