summaryrefslogtreecommitdiffstats
path: root/arch/s390/lib
diff options
context:
space:
mode:
authorAl Viro2016-01-12 19:30:03 +0100
committerAl Viro2016-08-08 05:47:20 +0200
commit711f5df7bf3ae7657e15edf76d671042c051ce95 (patch)
tree98401da88c9c12be546a259b70719a1740ee5027 /arch/s390/lib
parentm68k: move exports to definitions (diff)
downloadkernel-qcow2-linux-711f5df7bf3ae7657e15edf76d671042c051ce95.tar.gz
kernel-qcow2-linux-711f5df7bf3ae7657e15edf76d671042c051ce95.tar.xz
kernel-qcow2-linux-711f5df7bf3ae7657e15edf76d671042c051ce95.zip
s390: move exports to definitions
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/s390/lib')
-rw-r--r--arch/s390/lib/mem.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/s390/lib/mem.S b/arch/s390/lib/mem.S
index c6d553e85ab1..be9fa65bfac4 100644
--- a/arch/s390/lib/mem.S
+++ b/arch/s390/lib/mem.S
@@ -5,6 +5,7 @@
*/
#include <linux/linkage.h>
+#include <asm/export.h>
/*
* memset implementation
@@ -60,6 +61,7 @@ ENTRY(memset)
xc 0(1,%r1),0(%r1)
.Lmemset_mvc:
mvc 1(1,%r1),0(%r1)
+EXPORT_SYMBOL(memset)
/*
* memcpy implementation
@@ -86,3 +88,4 @@ ENTRY(memcpy)
j .Lmemcpy_rest
.Lmemcpy_mvc:
mvc 0(1,%r1),0(%r3)
+EXPORT_SYMBOL(memcpy)