make cache_flush_ not const, because syscalls are usually not

This commit is contained in:
Grazvydas Ignotas 2013-06-27 03:33:00 +03:00
parent b57ed12e39
commit c2981fc0ee
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
#include <sys/syscall.h>
.global cache_flush_d_inval_i @ const void *start_addr, const void *end_addr
.global cache_flush_d_inval_i @ void *start_addr, void *end_addr
cache_flush_d_inval_i:
mov r2, #0

View file

@ -1 +1 @@
extern void cache_flush_d_inval_i(const void *start_addr, const void *end_addr);
extern void cache_flush_d_inval_i(void *start_addr, void *end_addr);