Skip to content

Commit

Permalink
ARM: S3C24XX: Fix nand partition table for s3c24XX
Browse files Browse the repository at this point in the history
This patch fixes the partition table as existing partition table have last
partition size fixed and can't utilize available memory proprly if size is
more than 64M.

Signed-off-by: Atul Dahiya <atul.dahiya@samsung.com>
Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Atul Dahiya authored and Kukjin Kim committed Oct 18, 2010
1 parent cd07202 commit 66ad4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-s3c24xx/common-smdk.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ static struct mtd_partition smdk_default_nand_part[] = {
[7] = {
.name = "S3C2410 flash partition 7",
.offset = SZ_1M * 48,
.size = SZ_16M,
.size = MTDPART_SIZ_FULL,
}
};

Expand Down

0 comments on commit 66ad4ee

Please sign in to comment.