diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-01-11 20:21:18 +0300 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2019-01-17 15:59:12 +0300 |
commit | e3966a766865da7ced1dece663697861dd5cf103 (patch) | |
tree | 83b32bab7bc2d5dba5496487adf814b201df89f7 /arch/arm/boot/dts/da850.dtsi | |
parent | c25748acc5c20786ecb7518bfeae8fcef93472d6 (diff) | |
download | linux-e3966a766865da7ced1dece663697861dd5cf103.tar.xz |
ARM: dts: da850: fix interrupt numbers for clocksource
The timer interrupts specified in commit 3652e2741f42 ("ARM: dts:
da850: Add clocks") are wrong but since the current timer code
hard-codes them, the bug was never spotted.
This patch must go into stable since, once we introduce a proper
clocksource driver, devices with buggy device tree will stop booting.
Fixes: 3652e2741f42 ("ARM: dts: da850: Add clocks")
Cc: stable@vger.kernel.org
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/boot/dts/da850.dtsi')
-rw-r--r-- | arch/arm/boot/dts/da850.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi index 47aa53ba6b92..559659b399d0 100644 --- a/arch/arm/boot/dts/da850.dtsi +++ b/arch/arm/boot/dts/da850.dtsi @@ -476,7 +476,7 @@ clocksource: timer@20000 { compatible = "ti,da830-timer"; reg = <0x20000 0x1000>; - interrupts = <12>, <13>; + interrupts = <21>, <22>; interrupt-names = "tint12", "tint34"; clocks = <&pll0_auxclk>; }; |