diff options
author | Franklin S Cooper Jr <fcooper@ti.com> | 2017-05-22 07:46:56 +0200 |
---|---|---|
committer | Santosh Shilimkar <ssantosh@kernel.org> | 2017-05-22 07:46:56 +0200 |
commit | f402573fc010fe05fb901ccb6057c4872c392a56 (patch) | |
tree | cdc30175c3c6a9ddfdfdb2eff54b415a99fa6ce7 /arch/arm/boot/dts/keystone-k2g.dtsi | |
parent | Linux 4.12-rc2 (diff) | |
download | linux-f402573fc010fe05fb901ccb6057c4872c392a56.tar.xz linux-f402573fc010fe05fb901ccb6057c4872c392a56.zip |
ARM: dts: keystone-k2g: Remove skeleton.dtsi
Adding the unit address to the memory node was causing the below error:
Warning (reg_format): "reg" property in /memory has invalid length
(8 bytes) (#address-cells == 2, #size-cells == 2)
Further debugging showed that this was due to the memory node added by
default to skeleton.dtsi which was being included in keystone-k2g.dtsi.
Adding a missing node was all that was needed to remove this deprecated
dtsi file from the SoC dtsi. With skeleton.dtsi removed the dtc compiler
no longer complained about including the unit address for the memory node.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/keystone-k2g.dtsi')
-rw-r--r-- | arch/arm/boot/dts/keystone-k2g.dtsi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi index f59567fe7d91..a789f75a1ed5 100644 --- a/arch/arm/boot/dts/keystone-k2g.dtsi +++ b/arch/arm/boot/dts/keystone-k2g.dtsi @@ -15,7 +15,6 @@ #include <dt-bindings/interrupt-controller/arm-gic.h> #include <dt-bindings/pinctrl/keystone.h> -#include "skeleton.dtsi" / { compatible = "ti,k2g","ti,keystone"; @@ -24,6 +23,8 @@ #size-cells = <2>; interrupt-parent = <&gic>; + chosen { }; + aliases { serial0 = &uart0; }; |