aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r--arch/blackfin/mach-bf537/boards/stamp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c
index 9e2277e0d25..9c6fa70c406 100644
--- a/arch/blackfin/mach-bf537/boards/stamp.c
+++ b/arch/blackfin/mach-bf537/boards/stamp.c
@@ -343,7 +343,7 @@ static struct platform_device net2272_bfin_device = {
343static struct mtd_partition stamp_partitions[] = { 343static struct mtd_partition stamp_partitions[] = {
344 { 344 {
345 .name = "Bootloader", 345 .name = "Bootloader",
346 .size = 0x20000, 346 .size = 0x40000,
347 .offset = 0, 347 .offset = 0,
348 }, { 348 }, {
349 .name = "Kernel", 349 .name = "Kernel",
@@ -351,7 +351,7 @@ static struct mtd_partition stamp_partitions[] = {
351 .offset = MTDPART_OFS_APPEND, 351 .offset = MTDPART_OFS_APPEND,
352 }, { 352 }, {
353 .name = "RootFS", 353 .name = "RootFS",
354 .size = 0x400000 - 0x20000 - 0xE0000 - 0x10000, 354 .size = 0x400000 - 0x40000 - 0xE0000 - 0x10000,
355 .offset = MTDPART_OFS_APPEND, 355 .offset = MTDPART_OFS_APPEND,
356 }, { 356 }, {
357 .name = "MAC Address", 357 .name = "MAC Address",
@@ -391,17 +391,17 @@ static struct platform_device stamp_flash_device = {
391static struct mtd_partition bfin_spi_flash_partitions[] = { 391static struct mtd_partition bfin_spi_flash_partitions[] = {
392 { 392 {
393 .name = "bootloader", 393 .name = "bootloader",
394 .size = 0x00020000, 394 .size = 0x00040000,
395 .offset = 0, 395 .offset = 0,
396 .mask_flags = MTD_CAP_ROM 396 .mask_flags = MTD_CAP_ROM
397 }, { 397 }, {
398 .name = "kernel", 398 .name = "kernel",
399 .size = 0xe0000, 399 .size = 0xe0000,
400 .offset = 0x20000 400 .offset = MTDPART_OFS_APPEND,
401 }, { 401 }, {
402 .name = "file system", 402 .name = "file system",
403 .size = 0x700000, 403 .size = MTDPART_SIZ_FULL,
404 .offset = 0x00100000, 404 .offset = MTDPART_OFS_APPEND,
405 } 405 }
406}; 406};
407 407