ARM: dts: am3517-evm-uboot: Add reg-shift for UART
authorAdam Ford <aford173@gmail.com>
Tue, 10 Jul 2018 10:04:38 +0000 (05:04 -0500)
committerTom Rini <trini@konsulko.com>
Mon, 23 Jul 2018 18:33:21 +0000 (14:33 -0400)
With the resync of the omap3.dtsi file, the reg-shift was removed
so it breaks the UART.  Adding the reg-shift into the
am3517-evm-u-boot.dtsi keeps the reg-shift for U-Boot, but keeps
the dts/dtsi files clean from Linux.

Signed-off-by: Adam Ford <aford173@gmail.com>
arch/arm/dts/am3517-evm-u-boot.dtsi

index f049a64..59df819 100644 (file)
@@ -9,3 +9,15 @@
                stdout-path = &uart3;
        };
 };
+
+&uart1 {
+       reg-shift = <2>;
+};
+
+&uart2 {
+       reg-shift = <2>;
+};
+
+&uart3 {
+       reg-shift = <2>;
+};