summaryrefslogtreecommitdiff
path: root/bootloader/gigabeat-s.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/gigabeat-s.c')
-rw-r--r--bootloader/gigabeat-s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/gigabeat-s.c b/bootloader/gigabeat-s.c
index cd3b1df545..2e95d4cf64 100644
--- a/bootloader/gigabeat-s.c
+++ b/bootloader/gigabeat-s.c
@@ -311,7 +311,7 @@ static void __attribute__((noreturn)) handle_firmware_load(void)
311 311
312 if (rc == EOK) 312 if (rc == EOK)
313 { 313 {
314 invalidate_icache(); 314 cpucache_invalidate();
315 asm volatile ("bx %0": : "r"(start_addr)); 315 asm volatile ("bx %0": : "r"(start_addr));
316 } 316 }
317 317
@@ -332,7 +332,7 @@ void main(void)
332 int rc; 332 int rc;
333 333
334 /* Flush and invalidate all caches (because vectors were written) */ 334 /* Flush and invalidate all caches (because vectors were written) */
335 invalidate_icache(); 335 cpucache_invalidate();
336 336
337 system_init(); 337 system_init();
338 kernel_init(); 338 kernel_init();