diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-12 20:38:28 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-04 00:16:24 +0100 |
commit | 49cb25e92902ba24bd38c350114f8695493b262f (patch) | |
tree | 4bc2fffe7aa654c4230232e0f64eee071ec1da46 /arch/x86/include/asm/syscalls.h | |
parent | x86: get rid of pt_regs argument in sigreturn variants (diff) | |
download | linux-49cb25e92902ba24bd38c350114f8695493b262f.tar.xz linux-49cb25e92902ba24bd38c350114f8695493b262f.zip |
x86: get rid of pt_regs argument in vm86/vm86old
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/include/asm/syscalls.h')
-rw-r--r-- | arch/x86/include/asm/syscalls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/syscalls.h b/arch/x86/include/asm/syscalls.h index de2e1ab913bb..f755423a5d02 100644 --- a/arch/x86/include/asm/syscalls.h +++ b/arch/x86/include/asm/syscalls.h @@ -40,8 +40,8 @@ asmlinkage int sys_sigaction(int, const struct old_sigaction __user *, unsigned long sys_sigreturn(void); /* kernel/vm86_32.c */ -int sys_vm86old(struct vm86_struct __user *, struct pt_regs *); -int sys_vm86(unsigned long, unsigned long, struct pt_regs *); +int sys_vm86old(struct vm86_struct __user *); +int sys_vm86(unsigned long, unsigned long); #else /* CONFIG_X86_32 */ |