Skip to content

Commit 9ffd430

Browse files
jractravisg
authored andcommitted
[arch][m68k] Make 'arch_clean_cache_range' a noop, called from gfx flush functions.
1 parent 211cb5f commit 9ffd430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/m68k/arch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void arch_chain_load(void *entry, ulong arg0, ulong arg1, ulong arg2, ulong arg3
5050
void arch_disable_cache(uint flags) { PANIC_UNIMPLEMENTED; }
5151
void arch_enable_cache(uint flags) { PANIC_UNIMPLEMENTED; }
5252

53-
void arch_clean_cache_range(addr_t start, size_t len) { PANIC_UNIMPLEMENTED; }
53+
void arch_clean_cache_range(addr_t start, size_t len) { } // TODO: may need to implement this later
5454
void arch_clean_invalidate_cache_range(addr_t start, size_t len) { PANIC_UNIMPLEMENTED; }
5555
void arch_invalidate_cache_range(addr_t start, size_t len) { PANIC_UNIMPLEMENTED; }
5656
void arch_sync_cache_range(addr_t start, size_t len) { PANIC_UNIMPLEMENTED; }

0 commit comments

Comments
 (0)