Commit 6714fcc3 authored by Michal Simek's avatar Michal Simek

microblaze: Remove redundant variable

Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent e1c4bd08
...@@ -161,7 +161,6 @@ static void kernel_thread_helper(int (*fn)(void *), void *arg) ...@@ -161,7 +161,6 @@ static void kernel_thread_helper(int (*fn)(void *), void *arg)
int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
{ {
struct pt_regs regs; struct pt_regs regs;
int ret;
memset(&regs, 0, sizeof(regs)); memset(&regs, 0, sizeof(regs));
/* store them in non-volatile registers */ /* store them in non-volatile registers */
...@@ -171,10 +170,8 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) ...@@ -171,10 +170,8 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
regs.pc = (unsigned long)kernel_thread_helper; regs.pc = (unsigned long)kernel_thread_helper;
regs.pt_mode = 1; regs.pt_mode = 1;
ret = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
&regs, 0, NULL, NULL); &regs, 0, NULL, NULL);
return ret;
} }
unsigned long get_wchan(struct task_struct *p) unsigned long get_wchan(struct task_struct *p)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment