diff options
author | Vladimir Murzin <vladimir.murzin@arm.com> | 2019-01-21 13:35:39 +0300 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2019-01-22 14:59:36 +0300 |
commit | fc71f69ceccf64cb198c0301d982e0a21c3181ae (patch) | |
tree | 44c486369530e3d7367b99d6d6ed426a4ccf321d /arch/arm/boot/dts/mps2.dtsi | |
parent | bfeffd155283772bbe78c6a05dec7c0128ee500c (diff) | |
download | linux-fc71f69ceccf64cb198c0301d982e0a21c3181ae.tar.xz |
ARM: dts: mps2: use list instead of tuple for uart interrupts
MPS2 UART requires dedicated interrupts for RX, TX and overflow, which
obviously should be expressed as a list. Current form uses tuple and
it has worked so far because NVIC has interrupt-cells equal to 1.
Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Diffstat (limited to 'arch/arm/boot/dts/mps2.dtsi')
-rw-r--r-- | arch/arm/boot/dts/mps2.dtsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/boot/dts/mps2.dtsi b/arch/arm/boot/dts/mps2.dtsi index 23467390558d..96fb5a5cf4d3 100644 --- a/arch/arm/boot/dts/mps2.dtsi +++ b/arch/arm/boot/dts/mps2.dtsi @@ -171,7 +171,7 @@ uart0: serial@4000 { compatible = "arm,mps2-uart"; reg = <0x4000 0x1000>; - interrupts = <0 1 12>; + interrupts = <0>, <1>, <12>; clocks = <&sysclk>; status = "disabled"; }; @@ -179,7 +179,7 @@ uart1: serial@5000 { compatible = "arm,mps2-uart"; reg = <0x5000 0x1000>; - interrupts = <2 3 12>; + interrupts = <2>, <3>, <12>; clocks = <&sysclk>; status = "disabled"; }; @@ -187,7 +187,7 @@ uart2: serial@6000 { compatible = "arm,mps2-uart"; reg = <0x6000 0x1000>; - interrupts = <4 5 12>; + interrupts = <4>, <5>, <12>; clocks = <&sysclk>; status = "disabled"; }; |