summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/iriver_flash.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 829b49b31c..cecd4990a9 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -165,6 +165,12 @@ bool cfi_get_flash_info(struct flash_info* pInfo)
165 rb->strcpy(pInfo->name, "SST39VF160"); 165 rb->strcpy(pInfo->name, "SST39VF160");
166 return true; 166 return true;
167 } 167 }
168 else if (pInfo->id == 0x5B)
169 {
170 pInfo->size = 4096* 1024; /* 4 MiB */
171 rb->strcpy(pInfo->name, "SST39VF3201");
172 return true;
173 }
168 else 174 else
169 return false; 175 return false;
170 } 176 }