diff options
author | Joachim Eastwood <manabian@gmail.com> | 2016-08-30 00:37:24 +0300 |
---|---|---|
committer | Joachim Eastwood <manabian@gmail.com> | 2016-09-06 22:53:16 +0300 |
commit | 0555a6be0691f14b48371d5359bab4ccc73023ef (patch) | |
tree | 06d15b87189a7203f35e34c98b961fb267ea1a2c /arch/arm/boot/dts/lpc18xx.dtsi | |
parent | 05b23ebc2bd9b85fcc1891c2bd20b1949861ea77 (diff) | |
download | linux-0555a6be0691f14b48371d5359bab4ccc73023ef.tar.xz |
ARM: dts: lpc18xx: remove skeleton.dtsi include and fix unit address warnings
Removale of skeleton.dtsi allows us also to fix the following
warning from the dts compiler:
Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name
by adding proper unit addresses to the memory nodes.
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Acked-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/lpc18xx.dtsi')
-rw-r--r-- | arch/arm/boot/dts/lpc18xx.dtsi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/lpc18xx.dtsi b/arch/arm/boot/dts/lpc18xx.dtsi index e956ea8aff16..7cae9c5e27db 100644 --- a/arch/arm/boot/dts/lpc18xx.dtsi +++ b/arch/arm/boot/dts/lpc18xx.dtsi @@ -11,7 +11,6 @@ * */ -#include "skeleton.dtsi" #include "armv7-m.dtsi" #include "dt-bindings/clock/lpc18xx-cgu.h" @@ -21,6 +20,9 @@ #define LPC_GPIO(port, pin) (port * 32 + pin) / { + #address-cells = <1>; + #size-cells = <1>; + cpus { #address-cells = <1>; #size-cells = <0>; |