ARM: dts: Fix NAND last partition size on LDP
authorTony Lindgren <tony@atomide.com>
Wed, 5 Nov 2014 17:21:23 +0000 (09:21 -0800)
committerTony Lindgren <tony@atomide.com>
Wed, 5 Nov 2014 20:17:10 +0000 (12:17 -0800)
Fix the following warning during the boot:

mtd: partition "Filesystem" extends beyond the end of device
"omap2-nand.0" -- size truncated to 0x6000000

Looks like I got the last partition size wrong while setting
up the .dts file. Note that this does not affect the partition
as the size has been getting truncated to the right size.

Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/boot/dts/omap3-ldp.dts

index 72dca0b..f7a45de 100644 (file)
                };
                partition@2000000 {
                        label = "Filesystem";
-                       reg = <0x2000000 0xe000000>;
+                       reg = <0x2000000 0x6000000>;
                };
        };