Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6de57233 authored by Marco Franchi's avatar Marco Franchi Committed by Shawn Guo
Browse files

ARM: dts: imx: Pass empty memory size on board dts



In preparation for removing 'reg = <0 0>;' from the dtsi SoC files, pass
'reg = <0 0 >;' to the dts/dtsi board files that do not pass the memory
size.

Signed-off-by: default avatarMarco Franchi <marco.franchi@nxp.com>
Reviewed-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent bf455670
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -51,6 +51,11 @@
		stdout-path = &uart1;
	};

	/* Will be filled by the bootloader */
	memory {
		reg = <0 0>;
	};

	aliases {
		mdio-gpio0 = &mdio_gpio;
		rtc0 = &ds1341;
+5 −0
Original line number Diff line number Diff line
@@ -49,6 +49,11 @@
	model = "Ka-Ro electronics TX53 module";
	compatible = "karo,tx53", "fsl,imx53";

	/* Will be filled by the bootloader */
	memory {
		reg = <0 0>;
	};

	aliases {
		can0 = &can2; /* Make the can interface indices consistent with TX28/TX48 modules */
		can1 = &can1;
+5 −0
Original line number Diff line number Diff line
@@ -53,6 +53,11 @@
	compatible = "toradex,colibri_imx6dl-eval-v3", "toradex,colibri_imx6dl",
		     "fsl,imx6dl";

	/* Will be filled by the bootloader */
	memory {
		reg = <0 0>;
	};

	aliases {
		i2c0 = &i2c2;
		i2c1 = &i2c3;
+5 −0
Original line number Diff line number Diff line
@@ -20,4 +20,9 @@
/ {
	model = "DFI FS700-M60-6DL i.MX6dl Q7 Board";
	compatible = "dfi,fs700-m60-6dl", "dfi,fs700e-m60", "fsl,imx6dl";

	/* Will be filled by the bootloader */
	memory {
		reg = <0 0>;
	};
};
+5 −0
Original line number Diff line number Diff line
@@ -46,4 +46,9 @@
/ {
	model = "Technologic Systems i.MX6 Solo/DualLite TS-4900 (Default Device Tree)";
	compatible = "technologic,imx6dl-ts4900", "fsl,imx6dl";

	/* Will be filled by the bootloader */
	memory {
		reg = <0 0>;
	};
};
Loading