diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-02 20:05:17 +0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-04 14:59:43 +0400 |
commit | a80a635f3d60e4aa61f96d22a122071cb061be93 (patch) | |
tree | 93dc8e4b0f345448b20ecc461767369b4eea46b2 /arch/cris/arch-v32/kernel/cacheflush.S | |
parent | b4973ae9dac3397499f5576c591d5c5bf51c68c6 (diff) | |
download | linux-a80a635f3d60e4aa61f96d22a122071cb061be93.tar.xz |
CRIS: Add debug for assembler functions
Signed-off-by: Edgar Iglesias <Edgar.Iglesias@axis.com>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/arch-v32/kernel/cacheflush.S')
-rw-r--r-- | arch/cris/arch-v32/kernel/cacheflush.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/cris/arch-v32/kernel/cacheflush.S b/arch/cris/arch-v32/kernel/cacheflush.S index 956e8fb82f01..6fc3d95d7029 100644 --- a/arch/cris/arch-v32/kernel/cacheflush.S +++ b/arch/cris/arch-v32/kernel/cacheflush.S @@ -1,4 +1,5 @@ .global cris_flush_cache_range + .type cris_flush_cache_range, @function cris_flush_cache_range: move.d 1024, $r12 cmp.d $r11, $r12 @@ -80,8 +81,10 @@ cris_flush_1KB: addq 32, $r10 ba cris_flush_cache_range sub.d $r12, $r11 + .size cris_flush_cache_range, . - cris_flush_cache_range .global cris_flush_cache + .type cris_flush_cache, @function cris_flush_cache: moveq 0, $r10 cris_flush_line: @@ -92,3 +95,5 @@ cris_flush_line: fidxd [$r10] ret nop + .size cris_flush_cache, . - cris_flush_cache + |