diff options
Diffstat (limited to 'arch/alpha/lib/memcpy.c')
-rw-r--r-- | arch/alpha/lib/memcpy.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/alpha/lib/memcpy.c b/arch/alpha/lib/memcpy.c index 64083fc73238..57d9291ad172 100644 --- a/arch/alpha/lib/memcpy.c +++ b/arch/alpha/lib/memcpy.c | |||
@@ -16,6 +16,7 @@ | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <linux/types.h> | 18 | #include <linux/types.h> |
19 | #include <linux/export.h> | ||
19 | 20 | ||
20 | /* | 21 | /* |
21 | * This should be done in one go with ldq_u*2/mask/stq_u. Do it | 22 | * This should be done in one go with ldq_u*2/mask/stq_u. Do it |
@@ -158,6 +159,4 @@ void * memcpy(void * dest, const void *src, size_t n) | |||
158 | __memcpy_unaligned_up ((unsigned long) dest, (unsigned long) src, n); | 159 | __memcpy_unaligned_up ((unsigned long) dest, (unsigned long) src, n); |
159 | return dest; | 160 | return dest; |
160 | } | 161 | } |
161 | 162 | EXPORT_SYMBOL(memcpy); | |
162 | /* For backward modules compatibility, define __memcpy. */ | ||
163 | asm("__memcpy = memcpy; .globl __memcpy"); | ||