search for: v7_way_op

Displaying 1 result from an estimated 1 matches for "v7_way_op".

2012 Feb 13
0
[PATCH 10/14] arm: implement ARMv7 tlb ops.
.../xen/cache-v7.S Sun Feb 12 12:24:09 2012 +0900 @@ -1,7 +1,6 @@ -#include <xen/linkage.h> +#include <xen/config.h> +#include <asm/asm-macros.h> #include <asm/page.h> -#include <asm/cpu-ops.h> -#include <asm/system.h> #include <asm/asm-offsets.h> .macro v7_way_op, op @@ -49,7 +48,7 @@ 50: .endm .text -PRIVATE(v7_flush_cache_all) +ENTRY(cpu_flush_cache_all) stmfd sp!, {r4-r5, r7, r9-r11, lr} v7_way_op c14 @@ -59,9 +58,7 @@ PRIVATE(v7_flush_cache_all) ldmfd sp!, {r4-r5, r7, r9-r11, lr} mov pc, lr -DECLARE_CPU_OP(cpu_flush_cache_all, v7_flush...