From: Chen Gang Date: Tue, 12 Nov 2013 23:06:46 +0000 (-0800) Subject: sh64: kernel: use 'usp' instead of 'fn' X-Git-Tag: v3.13-rc1~106^2~267 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42b43341b045227c5ffca04c2d9424c77abed4fb;p=profile%2Fivi%2Fkernel-x86-ivi.git sh64: kernel: use 'usp' instead of 'fn' 'fn' is not defined, according to the implementation copy_thread() in 'sh32', need use 'usp' instead of. Signed-off-by: Chen Gang Cc: Paul Mundt Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 174d124..eac5947 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c @@ -393,7 +393,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, if (unlikely(p->flags & PF_KTHREAD)) { memset(childregs, 0, sizeof(struct pt_regs)); childregs->regs[2] = (unsigned long)arg; - childregs->regs[3] = (unsigned long)fn; + childregs->regs[3] = (unsigned long)usp; childregs->sr = (1 << 30); /* not user_mode */ childregs->sr |= SR_FD; /* Invalidate FPU flag */ p->thread.pc = (unsigned long) ret_from_kernel_thread;