Commit ae32ffd6 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Export csum_partial_copy_nocheck.

ibmtr.c and typhoon.c use it.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 2d911e9a
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
* Copyright (C) 1998, 1999 Ralf Baechle * Copyright (C) 1998, 1999 Ralf Baechle
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h> #include <linux/types.h>
#include <asm/byteorder.h> #include <asm/byteorder.h>
#include <asm/string.h> #include <asm/string.h>
...@@ -29,6 +30,8 @@ __wsum csum_partial_copy_nocheck(const void *src, ...@@ -29,6 +30,8 @@ __wsum csum_partial_copy_nocheck(const void *src,
return sum; return sum;
} }
EXPORT_SYMBOL(csum_partial_copy_nocheck);
/* /*
* Copy from userspace and compute checksum. If we catch an exception * Copy from userspace and compute checksum. If we catch an exception
* then zero the rest of the buffer. * then zero the rest of the buffer.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment