diff options
author | Fabio Estevam <festevam@gmail.com> | 2018-12-06 13:08:57 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-12-10 05:33:35 +0300 |
commit | 50536c661194dcb43faeba8aaae85e3f34145ee4 (patch) | |
tree | bf6aaf06f95dd1b2cec1b5a7e22b269bb22da66b /arch/arm/boot/dts/imx7d-pico.dtsi | |
parent | 2e8566106d284badf6ec94509f77fdf7725d04b4 (diff) | |
download | linux-50536c661194dcb43faeba8aaae85e3f34145ee4.tar.xz |
ARM: dts: imx7d-pico: Do not harcode the memory size
Currently the memory size described in dts is 2GB, which is incorrect.
There are 512MB and 1GB versions of imx7d-pico boards, so remove
the hardcoded memory size and let the bootloader pass the correct
value to the kernel.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx7d-pico.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx7d-pico.dtsi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx7d-pico.dtsi b/arch/arm/boot/dts/imx7d-pico.dtsi index 934a019f341e..0df68e53e9fa 100644 --- a/arch/arm/boot/dts/imx7d-pico.dtsi +++ b/arch/arm/boot/dts/imx7d-pico.dtsi @@ -48,9 +48,10 @@ model = "Technexion Pico i.MX7D Board"; compatible = "technexion,imx7d-pico", "fsl,imx7d"; + /* Will be filled by the bootloader */ memory@80000000 { device_type = "memory"; - reg = <0x80000000 0x80000000>; + reg = <0x80000000 0>; }; reg_ap6212: regulator-ap6212 { |