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/bcm2836-rpi-2-b.dts | |
parent | 0040cf8dc9257049f9d4c11f1d38c82886cd391f (diff) | |
download | linux-next-f090e1bd7b05f17d35b6e2d0e946d8a8085d264f.tar.gz |
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/bcm2836-rpi-2-b.dts')
-rw-r--r-- | arch/arm/boot/dts/bcm2836-rpi-2-b.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm2836-rpi-2-b.dts b/arch/arm/boot/dts/bcm2836-rpi-2-b.dts index ac4408b34b58..871fc4a558cf 100644 --- a/arch/arm/boot/dts/bcm2836-rpi-2-b.dts +++ b/arch/arm/boot/dts/bcm2836-rpi-2-b.dts @@ -9,7 +9,7 @@ compatible = "raspberrypi,2-model-b", "brcm,bcm2836"; model = "Raspberry Pi 2 Model B"; - memory { + memory@0 { reg = <0 0x40000000>; }; |