make cache_flush_ not const, because syscalls are usually not
authorGrazvydas Ignotas <notasas@gmail.com>
Thu, 27 Jun 2013 00:33:00 +0000 (03:33 +0300)
committerGrazvydas Ignotas <notasas@gmail.com>
Thu, 27 Jun 2013 00:33:00 +0000 (03:33 +0300)
arm_linux.S
arm_linux.h

index 8b13ebb..247a476 100644 (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
index 99de912..63dc395 100644 (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);