Skip to content

Commit

Permalink
ARM: dts: Fix NAND last partition size on LDP
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tony Lindgren committed Nov 5, 2014
1 parent aa25729 commit 9dec11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/omap3-ldp.dts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
};
partition@2000000 {
label = "Filesystem";
reg = <0x2000000 0xe000000>;
reg = <0x2000000 0x6000000>;
};
};

Expand Down

0 comments on commit 9dec11f

Please sign in to comment.