sh64: kernel: remove useless variable 'regs'
authorChen Gang <gang.chen@asianux.com>
Tue, 12 Nov 2013 23:06:48 +0000 (15:06 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 13 Nov 2013 03:08:59 +0000 (12:08 +0900)
Remove useless variable 'regs' to avoid the related warnings (warning is
treated as error).

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/sh/kernel/process_64.c

index eac5947..e2062e6 100644 (file)
@@ -374,7 +374,7 @@ asmlinkage void ret_from_kernel_thread(void);
 int copy_thread(unsigned long clone_flags, unsigned long usp,
                unsigned long arg, struct task_struct *p)
 {
-       struct pt_regs *childregs, *regs = current_pt_regs();
+       struct pt_regs *childregs;
 
 #ifdef CONFIG_SH_FPU
        /* can't happen for a kernel thread */