aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Ford2018-07-10 05:04:38 -0500
committerTom Rini2018-07-23 14:33:21 -0400
commit972edd49302aaa68890338d9b7a54dd31949447a (patch)
tree0073fc215143f67b3eef675acb0de41eddf81507
parent78a88f7930becb78afef09c1237a8e4edc1b01e1 (diff)
ARM: dts: am3517-evm-uboot: Add reg-shift for UART
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>
-rw-r--r--arch/arm/dts/am3517-evm-u-boot.dtsi12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/dts/am3517-evm-u-boot.dtsi b/arch/arm/dts/am3517-evm-u-boot.dtsi
index f049a6452e9..59df819f9d6 100644
--- a/arch/arm/dts/am3517-evm-u-boot.dtsi
+++ b/arch/arm/dts/am3517-evm-u-boot.dtsi
@@ -9,3 +9,15 @@
stdout-path = &uart3;
};
};
+
+&uart1 {
+ reg-shift = <2>;
+};
+
+&uart2 {
+ reg-shift = <2>;
+};
+
+&uart3 {
+ reg-shift = <2>;
+};