diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-06-23 02:04:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 07:42:54 -0700 |
commit | 53470aaa02ef3c83187f1ffe0d2cb647274fe397 (patch) | |
tree | d270412696da4d845be0003d442de0421ffa009e /arch/frv/kernel/sys_frv.c | |
parent | 530018bf3d93e04533eec9c6516e3ce8f5310e13 (diff) |
[PATCH] frv: misc __user annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/frv/kernel/sys_frv.c')
-rw-r--r-- | arch/frv/kernel/sys_frv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/sys_frv.c b/arch/frv/kernel/sys_frv.c index 931aa6d895e..c4d4348c9e8 100644 --- a/arch/frv/kernel/sys_frv.c +++ b/arch/frv/kernel/sys_frv.c @@ -32,7 +32,7 @@ * sys_pipe() is the normal C calling standard for creating * a pipe. It's not the way unix traditionally does this, though. */ -asmlinkage long sys_pipe(unsigned long * fildes) +asmlinkage long sys_pipe(unsigned long __user * fildes) { int fd[2]; int error; |