From: Jon Hunter Date: Fri, 14 Dec 2012 20:34:18 +0000 (-0600) Subject: ARM: dts: OMAP2420: Correct H4 board memory size X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=d695c82f250237f5bb1dba85cfc292fdf2b661ed;p=deliverable%2Flinux.git ARM: dts: OMAP2420: Correct H4 board memory size The system memory node for the OMAP2420 H4 was incorrectly defined as start address followed by end address, instead of start address and size. No noticable side-effects were observed but fix this for correctness. Signed-off-by: Jon Hunter Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/boot/dts/omap2420-h4.dts b/arch/arm/boot/dts/omap2420-h4.dts index 77b84e17c477..9b0d07746cba 100644 --- a/arch/arm/boot/dts/omap2420-h4.dts +++ b/arch/arm/boot/dts/omap2420-h4.dts @@ -15,6 +15,6 @@ memory { device_type = "memory"; - reg = <0x80000000 0x84000000>; /* 64 MB */ + reg = <0x80000000 0x4000000>; /* 64 MB */ }; };