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

Commit c126bc6b authored by Jon Mason's avatar Jon Mason Committed by Greg Kroah-Hartman
Browse files

ARM: dts: BCM5301X: Fix memory start address




[ Upstream commit 88d1fa70c21d7b431386cfe70cdc514d98b0c9c4 ]

Memory starts at 0x80000000, not 0.  0 "works" due to mirrior of the
first 128M of RAM to that address.  Anything greater than 128M will
quickly find nothing there.  Correcting the starting address has
everything working again.

Signed-off-by: default avatarJon Mason <jon.mason@broadcom.com>
Fixes: 7eb05f6d ("ARM: dts: bcm5301x: Add BCM SVK DT files")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 16db9205
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
	};

	memory {
		reg = <0x00000000 0x10000000>;
		reg = <0x80000000 0x10000000>;
	};
};