diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-07-16 23:08:45 -0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-07-17 15:26:46 +0800 |
commit | 25cd17a2360ee285a314e55affcfb0d7fa6aac0d (patch) | |
tree | 27c53e4a09838e8c36648fa2bb7c9a4fb4f98e7d /arch/arm/boot/dts/imx6ul-pico-hobbit.dts | |
parent | 0982a24f2401d8ac89e4694a21af3c118354f6ef (diff) |
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/boot/dts/imx6ul-pico-hobbit.dts')
-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 { |