ARM: S3C24XX: Fix nand partition table for s3c24XX
authorAtul Dahiya <atul.dahiya@samsung.com>
Mon, 18 Oct 2010 10:53:34 +0000 (19:53 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Mon, 18 Oct 2010 10:53:34 +0000 (19:53 +0900)
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>
arch/arm/plat-s3c24xx/common-smdk.c

index 7b44d0c592b54b3e758c4bb4fa8085e6eb61a8a0..bcc43f3462725259f36573babf980e707eebbc81 100644 (file)
@@ -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,
        }
 };
 
This page took 0.024401 seconds and 5 git commands to generate.