diff options
Diffstat (limited to 'apps/plugins/iriver_flash.c')
-rw-r--r-- | apps/plugins/iriver_flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c index cecd4990a9..2ef6872c7d 100644 --- a/apps/plugins/iriver_flash.c +++ b/apps/plugins/iriver_flash.c @@ -27,7 +27,7 @@ unsigned char *audiobuf; ssize_t audiobuf_size; -#ifndef IRIVER_H100_SERIES +#if !defined(IRIVER_H100_SERIES) && !defined(IRIVER_H300_SERIES) #error this platform is not (yet) flashable #endif @@ -48,7 +48,7 @@ struct flash_info char name[32]; }; -#ifdef IRIVER_H100_SERIES +#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES) #define SEC_SIZE 4096 #define BOOTLOADER_ERASEGUARD (BOOTLOADER_ENTRYPOINT / SEC_SIZE) enum sections { |