aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/parisc/kernel/process.c')
-rw-r--r--arch/parisc/kernel/process.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c
index 9753ecf49a06..d13507246c5d 100644
--- a/arch/parisc/kernel/process.c
+++ b/arch/parisc/kernel/process.c
@@ -204,10 +204,9 @@ int dump_task_fpu (struct task_struct *tsk, elf_fpregset_t *r)
204 204
205int 205int
206copy_thread(unsigned long clone_flags, unsigned long usp, 206copy_thread(unsigned long clone_flags, unsigned long usp,
207 unsigned long arg, 207 unsigned long arg, struct task_struct *p)
208 struct task_struct *p, struct pt_regs *unused)
209{ 208{
210 struct pt_regs * cregs = &(p->thread.regs); 209 struct pt_regs *cregs = &(p->thread.regs);
211 void *stack = task_stack_page(p); 210 void *stack = task_stack_page(p);
212 211
213 /* We have to use void * instead of a function pointer, because 212 /* We have to use void * instead of a function pointer, because