summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/iriver_flash.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 748945c4c0..39ec19a016 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -141,8 +141,13 @@ static bool flash_get_info(const struct flash_info** out_info)
141{ 141{
142 static const struct flash_info roms[] = 142 static const struct flash_info roms[] =
143 { 143 {
144#if FLASH_SIZE == 2048 * 1024
144 { 0x00BF, 0x2782, 2048 * 1024, "SST39VF160" }, 145 { 0x00BF, 0x2782, 2048 * 1024, "SST39VF160" },
146#elif FLASH_SIZE == 4096 * 1024
145 { 0x00BF, 0x235B, 4096 * 1024, "SST39VF3201" }, 147 { 0x00BF, 0x235B, 4096 * 1024, "SST39VF3201" },
148#else
149#error "Unsupported rom chip."
150#endif
146 {0} 151 {0}
147 }; 152 };
148 static struct flash_info unknown_rom = {0}; 153 static struct flash_info unknown_rom = {0};