diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-07-17 04:08:45 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-07-17 09:26:46 +0200 |
commit | 25cd17a2360ee285a314e55affcfb0d7fa6aac0d (patch) | |
tree | 27c53e4a09838e8c36648fa2bb7c9a4fb4f98e7d /arch/arm | |
parent | ARM: dts: imx6sl-evk: make pfuze100 sw4 always on (diff) | |
download | linux-25cd17a2360ee285a314e55affcfb0d7fa6aac0d.tar.xz linux-25cd17a2360ee285a314e55affcfb0d7fa6aac0d.zip |
ARM: dts: imx6ul-pico-hobbit: Do not hardcode the memory size
There are two variants of imx6ul-pico boards: one with 256MB and
another one with 512MB of RAM.
Do not hardcode the memory size in the device tree and let the
bootloader fill the correct value instead.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/imx6ul-pico-hobbit.dts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx6ul-pico-hobbit.dts b/arch/arm/boot/dts/imx6ul-pico-hobbit.dts index 47682b8c023c..0c09420f9951 100644 --- a/arch/arm/boot/dts/imx6ul-pico-hobbit.dts +++ b/arch/arm/boot/dts/imx6ul-pico-hobbit.dts @@ -51,8 +51,9 @@ model = "Technexion Pico i.MX6UL Board"; compatible = "technexion,imx6ul-pico-hobbit", "fsl,imx6ul"; + /* Will be filled by the bootloader */ memory@80000000 { - reg = <0x80000000 0x10000000>; + reg = <0x80000000 0>; }; chosen { |