diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-07-23 17:31:02 +0530 |
---|---|---|
committer | Jaswinder Singh <jaswinder@infradead.org> | 2008-07-23 17:31:02 +0530 |
commit | 8f7db5186cf126b56035d9a9735774d751090d66 (patch) | |
tree | 33a9ec6805ca672ce8fc4df17eb01785f29951ed | |
parent | 2b97df06ce44b1d145bd1299f50765803c2fabee (diff) | |
download | op-kernel-dev-8f7db5186cf126b56035d9a9735774d751090d66.zip op-kernel-dev-8f7db5186cf126b56035d9a9735774d751090d66.tar.gz |
x86: vm86_32.c declare functions before they get used
declared following syscalls in asm-x86/syscalls.h:
sys_vm86old, sys_vm86
Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
-rw-r--r-- | include/asm-x86/syscalls.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-x86/syscalls.h b/include/asm-x86/syscalls.h index 170fcb1..3d6b159 100644 --- a/include/asm-x86/syscalls.h +++ b/include/asm-x86/syscalls.h @@ -6,7 +6,6 @@ * This file is released under the GPLv2. * See the file COPYING for more details. * - * Please do not call me directly, include linux/syscalls.h */ #ifndef _ASM_X86_SYSCALLS_H @@ -60,6 +59,10 @@ asmlinkage int sys_olduname(struct oldold_utsname __user *); asmlinkage int sys_set_thread_area(struct user_desc __user *); asmlinkage int sys_get_thread_area(struct user_desc __user *); +/* kernel/vm86_32.c */ +asmlinkage int sys_vm86old(struct pt_regs); +asmlinkage int sys_vm86(struct pt_regs); + #else /* CONFIG_X86_32 */ /* X86_64 only */ |