mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-04 14:37:46 -04:00
make cache_flush_ not const, because syscalls are usually not
This commit is contained in:
parent
b57ed12e39
commit
c2981fc0ee
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
#include <sys/syscall.h>
|
#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:
|
cache_flush_d_inval_i:
|
||||||
mov r2, #0
|
mov r2, #0
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue