1
0
Fork 0

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>
hifive-unleashed-5.1
Vladimir Murzin 2019-01-21 10:35:39 +00:00 committed by Sudeep Holla
parent bfeffd1552
commit fc71f69cec
1 changed files with 3 additions and 3 deletions

View File

@ -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";
};