solutionengine.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) | solutionengine.c (0984c8910426371205da0b60fc1dae64a996fb64) |
---|---|
1/* 2 * Flash and EPROM on Hitachi Solution Engine and similar boards. 3 * 4 * (C) 2001 Red Hat, Inc. 5 * 6 * GPL'd 7 */ 8 --- 17 unchanged lines hidden (view full) --- 26}; 27 28struct map_info soleng_flash_map = { 29 .name = "Solution Engine FLASH", 30 .size = 0x400000, 31 .bankwidth = 4, 32}; 33 | 1/* 2 * Flash and EPROM on Hitachi Solution Engine and similar boards. 3 * 4 * (C) 2001 Red Hat, Inc. 5 * 6 * GPL'd 7 */ 8 --- 17 unchanged lines hidden (view full) --- 26}; 27 28struct map_info soleng_flash_map = { 29 .name = "Solution Engine FLASH", 30 .size = 0x400000, 31 .bankwidth = 4, 32}; 33 |
34static const char *probes[] = { "RedBoot", "cmdlinepart", NULL }; | 34static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL }; |
35 36#ifdef CONFIG_MTD_SUPERH_RESERVE 37static struct mtd_partition superh_se_partitions[] = { 38 /* Reserved for boot code, read-only */ 39 { 40 .name = "flash_boot", 41 .offset = 0x00000000, 42 .size = CONFIG_MTD_SUPERH_RESERVE, --- 76 unchanged lines hidden --- | 35 36#ifdef CONFIG_MTD_SUPERH_RESERVE 37static struct mtd_partition superh_se_partitions[] = { 38 /* Reserved for boot code, read-only */ 39 { 40 .name = "flash_boot", 41 .offset = 0x00000000, 42 .size = CONFIG_MTD_SUPERH_RESERVE, --- 76 unchanged lines hidden --- |