aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/lib/ev6-memset.S
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-01-11 09:51:29 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2016-08-07 23:47:18 -0400
commit00fc0e0dda6286407f3854cd71a125f519a5689c (patch)
tree04bae7f61ab6ac1a705e89f8b739e2d0679f212f /arch/alpha/lib/ev6-memset.S
parentx86: move exports to actual definitions (diff)
downloadlinux-dev-00fc0e0dda6286407f3854cd71a125f519a5689c.tar.xz
linux-dev-00fc0e0dda6286407f3854cd71a125f519a5689c.zip
alpha: move exports to actual definitions
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/alpha/lib/ev6-memset.S')
-rw-r--r--arch/alpha/lib/ev6-memset.S7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/alpha/lib/ev6-memset.S b/arch/alpha/lib/ev6-memset.S
index 356bb2fdd705..fed21c6893e8 100644
--- a/arch/alpha/lib/ev6-memset.S
+++ b/arch/alpha/lib/ev6-memset.S
@@ -26,7 +26,7 @@
* as fixes will need to be made in multiple places. The performance gain
* is worth it.
*/
-
+#include <asm/export.h>
.set noat
.set noreorder
.text
@@ -229,6 +229,7 @@ end_b:
nop
ret $31,($26),1 # L0 :
.end ___memset
+ EXPORT_SYMBOL(___memset)
/*
* This is the original body of code, prior to replication and
@@ -406,6 +407,7 @@ end:
nop
ret $31,($26),1 # L0 :
.end __constant_c_memset
+ EXPORT_SYMBOL(__constant_c_memset)
/*
* This is a replicant of the __constant_c_memset code, rescheduled
@@ -594,6 +596,9 @@ end_w:
ret $31,($26),1 # L0 :
.end __memsetw
+ EXPORT_SYMBOL(__memsetw)
memset = ___memset
__memset = ___memset
+ EXPORT_SYMBOL(memset)
+ EXPORT_SYMBOL(__memset)