summaryrefslogtreecommitdiff
path: root/firmware/rolo.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/rolo.c')
-rw-r--r--firmware/rolo.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index a5b3c56da9..fccc9f38da 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -29,7 +29,8 @@
29#include "string.h" 29#include "string.h"
30#include "buffer.h" 30#include "buffer.h"
31 31
32#if CONFIG_CPU != MCF5249 /* FIX: this doesn't work on iRiver yet */ 32#if (CONFIG_CPU != MCF5249) && (CONFIG_CPU != TCC730)
33/* FIX: this doesn't work on iRiver or Gmini yet */
33 34
34#define IRQ0_EDGE_TRIGGER 0x80 35#define IRQ0_EDGE_TRIGGER 0x80
35 36
@@ -145,7 +146,7 @@ int rolo_load(const char* filename)
145 146
146 return 0; /* this is never reached */ 147 return 0; /* this is never reached */
147} 148}
148#else /* CONFIG_CPU != MCF5249 */ 149#else /* (CONFIG_CPU != MCF5249) && (CONFIG_CPU != TCC730) */
149int rolo_load(const char* filename) 150int rolo_load(const char* filename)
150{ 151{
151 /* dummy */ 152 /* dummy */
@@ -153,4 +154,4 @@ int rolo_load(const char* filename)
153 return 0; 154 return 0;
154} 155}
155 156
156#endif /* CONFIG_CPU == MCF5249 */ 157#endif /* ! (CONFIG_CPU != MCF5249) && (CONFIG_CPU != TCC730) */