Commit 772a6a7b authored by Thierry Reding's avatar Thierry Reding
Browse files

arm64: tegra: Add unit-address to memory node



The memory node requires a unit-address. For some boards the bootloader,
which is usually locked down, uses a hard-coded name for the memory node
without a unit-address, so we can't fix it on those boards.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent e8931a27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x0 0x80000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x2 0x00000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x1 0x0>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x0 0xc0000000>;
	};
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
		stdout-path = "serial0:115200n8";
	};

	memory {
	memory@80000000 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x0 0xc0000000>;
	};
Loading