diff options
author | Stefan Wahren <stefan.wahren@i2se.com> | 2018-12-30 11:51:22 +0100 |
---|---|---|
committer | Stefan Wahren <stefan.wahren@i2se.com> | 2019-02-01 11:55:11 +0100 |
commit | f090e1bd7b05f17d35b6e2d0e946d8a8085d264f (patch) | |
tree | c8d3535db4cac16e53225b9bf5c63dd5fb39d684 /arch/arm/boot/dts/bcm2837-rpi-3-b.dts | |
parent | ARM: dts: add Raspberry Pi 3 A+ (diff) | |
download | linux-f090e1bd7b05f17d35b6e2d0e946d8a8085d264f.tar.xz linux-f090e1bd7b05f17d35b6e2d0e946d8a8085d264f.zip |
ARM: dts: bcm283x: Fix DTC warning for memory node
Compiling the bcm283x DTS with W=1 leads to the following warning:
Warning (unit_address_vs_reg): /memory: node has a reg or ranges property,
but no unit name
Fix this by adding the unit address.
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'arch/arm/boot/dts/bcm2837-rpi-3-b.dts')
-rw-r--r-- | arch/arm/boot/dts/bcm2837-rpi-3-b.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm2837-rpi-3-b.dts b/arch/arm/boot/dts/bcm2837-rpi-3-b.dts index 0c155dd4f396..9abb9c55e6e4 100644 --- a/arch/arm/boot/dts/bcm2837-rpi-3-b.dts +++ b/arch/arm/boot/dts/bcm2837-rpi-3-b.dts @@ -14,7 +14,7 @@ stdout-path = "serial1:115200n8"; }; - memory { + memory@0 { reg = <0 0x40000000>; }; |