-+
-+static struct mtd_partition db120_partitions[] = {
-+ {
-+ .name = "u-boot",
-+ .offset = 0,
-+ .size = 0x040000,
-+ .mask_flags = MTD_WRITEABLE,
-+ },
-+ {
-+ .name = "u-boot-env",
-+ .offset = 0x040000,
-+ .size = 0x010000,
-+ },
-+ {
-+ .name = "rootfs",
-+ .offset = 0x050000,
-+ .size = 0x630000,
-+ },
-+ {
-+ .name = "uImage",
-+ .offset = 0x680000,
-+ .size = 0x160000,
-+ },
-+ {
-+ .name = "NVRAM",
-+ .offset = 0x7E0000,
-+ .size = 0x010000,
-+ },
-+ {
-+ .name = "ART",
-+ .offset = 0x7F0000,
-+ .size = 0x010000,
-+ .mask_flags = MTD_WRITEABLE,
-+ }
-+};
-+
-+static struct flash_platform_data db120_flash_data = {
-+ .parts = db120_partitions,
-+ .nr_parts = ARRAY_SIZE(db120_partitions),
-+};