diff options
Diffstat (limited to 'arch/mips/include/asm/syscall.h')
-rw-r--r-- | arch/mips/include/asm/syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/include/asm/syscall.h b/arch/mips/include/asm/syscall.h index 6cf8ffb5367e..a2b4748655df 100644 --- a/arch/mips/include/asm/syscall.h +++ b/arch/mips/include/asm/syscall.h | |||
@@ -116,9 +116,10 @@ static inline void syscall_set_return_value(struct task_struct *task, | |||
116 | 116 | ||
117 | static inline void syscall_get_arguments(struct task_struct *task, | 117 | static inline void syscall_get_arguments(struct task_struct *task, |
118 | struct pt_regs *regs, | 118 | struct pt_regs *regs, |
119 | unsigned int i, unsigned int n, | ||
120 | unsigned long *args) | 119 | unsigned long *args) |
121 | { | 120 | { |
121 | unsigned int i = 0; | ||
122 | unsigned int n = 6; | ||
122 | int ret; | 123 | int ret; |
123 | 124 | ||
124 | /* O32 ABI syscall() */ | 125 | /* O32 ABI syscall() */ |