summaryrefslogtreecommitdiff
path: root/arch/cris/arch-v32/kernel/cacheflush.S
diff options
context:
space:
mode:
authorJesper Nilsson <jesper.nilsson@axis.com>2010-08-02 18:05:17 +0200
committerJesper Nilsson <jesper.nilsson@axis.com>2010-08-04 12:59:43 +0200
commita80a635f3d60e4aa61f96d22a122071cb061be93 (patch)
tree93dc8e4b0f345448b20ecc461767369b4eea46b2 /arch/cris/arch-v32/kernel/cacheflush.S
parentb4973ae9dac3397499f5576c591d5c5bf51c68c6 (diff)
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.S5
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
+