diff options
author | Brian Gerst <brgerst@gmail.com> | 2009-12-09 19:01:55 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-09 19:29:23 -0500 |
commit | f1382f157fb1175bba008abad0907310a1e459ce (patch) | |
tree | cbfecebf4ec8994237d512f97da745440c77ab26 /arch/x86/include | |
parent | 052acad48a566a6dbcccb95e5d22e5e1b7cac8dd (diff) |
x86, 32-bit: Convert sys_vm86 & sys_vm86old
Convert these to new PTREGSCALL stubs.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1260403316-5679-6-git-send-email-brgerst@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include')
-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 94e0b61fb040..df2c51106565 100644 --- a/arch/x86/include/asm/syscalls.h +++ b/arch/x86/include/asm/syscalls.h | |||
@@ -66,8 +66,8 @@ asmlinkage int sys_uname(struct old_utsname __user *); | |||
66 | asmlinkage int sys_olduname(struct oldold_utsname __user *); | 66 | asmlinkage int sys_olduname(struct oldold_utsname __user *); |
67 | 67 | ||
68 | /* kernel/vm86_32.c */ | 68 | /* kernel/vm86_32.c */ |
69 | int sys_vm86old(struct pt_regs *); | 69 | int sys_vm86old(struct vm86_struct __user *, struct pt_regs *); |
70 | int sys_vm86(struct pt_regs *); | 70 | int sys_vm86(unsigned long, unsigned long, struct pt_regs *); |
71 | 71 | ||
72 | #else /* CONFIG_X86_32 */ | 72 | #else /* CONFIG_X86_32 */ |
73 | 73 | ||