summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/rolo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index 316d23f8e1..faceef360a 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -172,7 +172,8 @@ void rolo_restart(const unsigned char* source, unsigned char* dest,
172 "mov pc, r0 \n" 172 "mov pc, r0 \n"
173 ); 173 );
174 174
175#elif defined(CPU_TCC780X) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU==DM320) 175#elif defined(CPU_TCC780X) || (CONFIG_CPU == S3C2440) || \
176 (CONFIG_CPU==DM320) || defined(CPU_S5L870X)
176 /* Flush and invalidate caches */ 177 /* Flush and invalidate caches */
177 cpucache_invalidate(); 178 cpucache_invalidate();
178 179
@@ -237,7 +238,7 @@ int rolo_load(const char* filename)
237 238
238#if defined(CPU_COLDFIRE) || defined(CPU_PP) || (CONFIG_CPU==DM320) \ 239#if defined(CPU_COLDFIRE) || defined(CPU_PP) || (CONFIG_CPU==DM320) \
239 || defined(CPU_TCC780X) || (CONFIG_CPU==IMX31L) || (CONFIG_CPU == S3C2440) \ 240 || defined(CPU_TCC780X) || (CONFIG_CPU==IMX31L) || (CONFIG_CPU == S3C2440) \
240 || (CONFIG_CPU==AS3525) || (CONFIG_CPU==JZ4732) 241 || (CONFIG_CPU==AS3525) || (CONFIG_CPU==JZ4732) || defined(CPU_S5L870X)
241 /* Read and save checksum */ 242 /* Read and save checksum */
242 lseek(fd, FIRMWARE_OFFSET_FILE_CRC, SEEK_SET); 243 lseek(fd, FIRMWARE_OFFSET_FILE_CRC, SEEK_SET);
243 if (read(fd, &file_checksum, 4) != 4) { 244 if (read(fd, &file_checksum, 4) != 4) {