@@ -1,4 +1,8 @@
// SPDX-License-Identifier: GPL-2.0
+
+#include "dt-bindings/clock/bcm3368-clock.h"
+#include "dt-bindings/interrupt-controller/bcm3368-interrupt-controller.h"
+
/ {
#address-cells = <1>;
#size-cells = <1>;
@@ -86,7 +90,7 @@ uart0: serial@fff8c100 {
reg = <0xfff8c100 0x18>;
interrupt-parent = <&periph_intc>;
- interrupts = <2>;
+ interrupts = <BCM3368_IRQ_UART0>;
clocks = <&periph_clk>;
clock-names = "refclk";
@@ -99,7 +103,7 @@ uart1: serial@fff8c120 {
reg = <0xfff8c120 0x18>;
interrupt-parent = <&periph_intc>;
- interrupts = <3>;
+ interrupts = <BCM3368_IRQ_UART1>;
clocks = <&periph_clk>;
clock-names = "refclk";
Now that there are proper device tree bindings we can start using them. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> --- arch/mips/boot/dts/brcm/bcm3368.dtsi | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)