Skip to content

Commit 88d1fa7

Browse files
Jon Masonffainelli
authored andcommitted
ARM: dts: BCM5301X: Fix memory start address
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: Jon Mason <jon.mason@broadcom.com> Fixes: 7eb05f6d ("ARM: dts: bcm5301x: Add BCM SVK DT files") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
1 parent e51b999 commit 88d1fa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/boot/dts/bcm953012k.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
};
4949

5050
memory {
51-
reg = <0x00000000 0x10000000>;
51+
reg = <0x80000000 0x10000000>;
5252
};
5353
};
5454

0 commit comments

Comments
 (0)