Commit 9dec11f5 authored by Tony Lindgren's avatar Tony Lindgren

ARM: dts: Fix NAND last partition size on LDP

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: default avatarTony Lindgren <tony@atomide.com>
parent aa25729c
......@@ -141,7 +141,7 @@ partition@200000 {
};
partition@2000000 {
label = "Filesystem";
reg = <0x2000000 0xe000000>;
reg = <0x2000000 0x6000000>;
};
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment