From c2981fc0ee15d3b1aff69901550fda32460bb1b1 Mon Sep 17 00:00:00 2001 From: Grazvydas Ignotas Date: Thu, 27 Jun 2013 03:33:00 +0300 Subject: [PATCH] make cache_flush_ not const, because syscalls are usually not --- arm_linux.S | 2 +- arm_linux.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arm_linux.S b/arm_linux.S index 8b13ebb..247a476 100644 --- a/arm_linux.S +++ b/arm_linux.S @@ -2,7 +2,7 @@ #include -.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 diff --git a/arm_linux.h b/arm_linux.h index 99de912..63dc395 100644 --- a/arm_linux.h +++ b/arm_linux.h @@ -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); -- 2.39.2