diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-02-22 14:16:35 -0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-02-28 09:48:05 +0800 |
commit | edc05819786fd5eee330b89bd5892dad1199effc (patch) | |
tree | b79c209ff4767f71ab254dc7e70fade2e5be5fd8 /arch/arm/boot/dts/imx6dl-ts7970.dts | |
parent | 0f01b91f42bf6bca0edc72dd0472d54d2826477c (diff) | |
download | blackbird-obmc-linux-edc05819786fd5eee330b89bd5892dad1199effc.tar.gz blackbird-obmc-linux-edc05819786fd5eee330b89bd5892dad1199effc.zip |
ARM: dts: imx6: Pass memory unit-adress
Pass the memory unit-adress to fix the following build warnings with W=1:
Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name
There are cases where dts passes an empty memory node, which will be filled
by the bootloader. Passing the memory base address still allows the
bootloader to fill the memory size.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Acked-By: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx6dl-ts7970.dts')
-rw-r--r-- | arch/arm/boot/dts/imx6dl-ts7970.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx6dl-ts7970.dts b/arch/arm/boot/dts/imx6dl-ts7970.dts index cae3313201a1..82435d5bf33f 100644 --- a/arch/arm/boot/dts/imx6dl-ts7970.dts +++ b/arch/arm/boot/dts/imx6dl-ts7970.dts @@ -49,7 +49,7 @@ compatible = "technologic,imx6dl-ts7970", "fsl,imx6dl"; /* Will be filled by the bootloader */ - memory { - reg = <0 0>; + memory@10000000 { + reg = <0x10000000 0>; }; }; |