summaryrefslogtreecommitdiff
path: root/arch/mn10300/lib/usercopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mn10300/lib/usercopy.c')
-rw-r--r--arch/mn10300/lib/usercopy.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/mn10300/lib/usercopy.c b/arch/mn10300/lib/usercopy.c
index b48af8d4f38d..cece1799cc32 100644
--- a/arch/mn10300/lib/usercopy.c
+++ b/arch/mn10300/lib/usercopy.c
@@ -11,25 +11,6 @@
*/
#include <linux/uaccess.h>
-unsigned long
-__generic_copy_to_user(void *to, const void *from, unsigned long n)
-{
- if (access_ok(VERIFY_WRITE, to, n))
- __copy_user(to, from, n);
- return n;
-}
-
-unsigned long
-__generic_copy_from_user(void *to, const void *from, unsigned long n)
-{
- unsigned long res = n;
- if (access_ok(VERIFY_READ, from, res))
- __copy_user(to, from, res);
- if (unlikely(res))
- memset(to + n - res, 0, res);
- return res;
-}
-
/*
* Copy a null terminated string from userspace.
*/