]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/arm/kernel/sys_arm.c
[ARM] Convert asm/uaccess.h to linux/uaccess.h
[linux-2.6-omap-h63xx.git] / arch / arm / kernel / sys_arm.c
index 4d25e49a14f7ca4eed6eea0a932fea2518fd8908..b3ec641b5cf8a1b8cf7cce2d932315e42235e03d 100644 (file)
 #include <linux/fs.h>
 #include <linux/file.h>
 #include <linux/utsname.h>
-
-#include <asm/uaccess.h>
-#include <asm/ipc.h>
+#include <linux/ipc.h>
+#include <linux/uaccess.h>
 
 extern unsigned long do_mremap(unsigned long addr, unsigned long old_len,
                               unsigned long new_len, unsigned long flags,
                               unsigned long new_addr);
 
-/*
- * sys_pipe() is the normal C calling standard for creating
- * a pipe. It's not the way unix traditionally does this, though.
- */
-asmlinkage int sys_pipe(unsigned long __user *fildes)
-{
-       int fd[2];
-       int error;
-
-       error = do_pipe(fd);
-       if (!error) {
-               if (copy_to_user(fildes, fd, 2*sizeof(int)))
-                       error = -EFAULT;
-       }
-       return error;
-}
-
 /* common code for old and new mmaps */
 inline long do_mmap2(
        unsigned long addr, unsigned long len,