diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-12-10 10:05:11 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-12-10 16:52:11 -0500 |
commit | ae32ffd65bbcc32795bb9b58ed12941efeb03dff (patch) | |
tree | 2831d84c6c298e68d9a47fad7f5e22d991840086 /arch/mips/lib | |
parent | 2d911e9a4e74ddbd059f9dabea402a119ef22e3d (diff) |
[MIPS] Export csum_partial_copy_nocheck.
ibmtr.c and typhoon.c use it.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lib')
-rw-r--r-- | arch/mips/lib/csum_partial_copy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/lib/csum_partial_copy.c b/arch/mips/lib/csum_partial_copy.c index 1720f2ceeeae..06771040a267 100644 --- a/arch/mips/lib/csum_partial_copy.c +++ b/arch/mips/lib/csum_partial_copy.c | |||
@@ -7,6 +7,7 @@ | |||
7 | * Copyright (C) 1998, 1999 Ralf Baechle | 7 | * Copyright (C) 1998, 1999 Ralf Baechle |
8 | */ | 8 | */ |
9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
10 | #include <linux/module.h> | ||
10 | #include <linux/types.h> | 11 | #include <linux/types.h> |
11 | #include <asm/byteorder.h> | 12 | #include <asm/byteorder.h> |
12 | #include <asm/string.h> | 13 | #include <asm/string.h> |
@@ -29,6 +30,8 @@ __wsum csum_partial_copy_nocheck(const void *src, | |||
29 | return sum; | 30 | return sum; |
30 | } | 31 | } |
31 | 32 | ||
33 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | ||
34 | |||
32 | /* | 35 | /* |
33 | * Copy from userspace and compute checksum. If we catch an exception | 36 | * Copy from userspace and compute checksum. If we catch an exception |
34 | * then zero the rest of the buffer. | 37 | * then zero the rest of the buffer. |