summaryrefslogtreecommitdiff
path: root/firmware/rolo.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/rolo.c')
-rw-r--r--firmware/rolo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index cecfa19045..958db56322 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -29,8 +29,8 @@
29#include "string.h" 29#include "string.h"
30#include "buffer.h" 30#include "buffer.h"
31 31
32#if CONFIG_CPU != TCC730 32#if (CONFIG_CPU != TCC730) && !defined(IRIVER_IFP7XX_SERIES)
33/* FIX: this doesn't work on Gmini yet */ 33/* FIX: this doesn't work on Gmini and iFP yet */
34 34
35#define IRQ0_EDGE_TRIGGER 0x80 35#define IRQ0_EDGE_TRIGGER 0x80
36 36
@@ -210,7 +210,7 @@ int rolo_load(const char* filename)
210 210
211 return 0; /* this is never reached */ 211 return 0; /* this is never reached */
212} 212}
213#else /* CONFIG_CPU != TCC730 */ 213#else /* (CONFIG_CPU != TCC730) && !defined(IRIVER_IFP7XX_SERIES) */
214int rolo_load(const char* filename) 214int rolo_load(const char* filename)
215{ 215{
216 /* dummy */ 216 /* dummy */
@@ -218,4 +218,4 @@ int rolo_load(const char* filename)
218 return 0; 218 return 0;
219} 219}
220 220
221#endif /* ! CONFIG_CPU != TCC730 */ 221#endif /* (CONFIG_CPU != TCC730) && !defined(IRIVER_IFP7XX_SERIES) */