aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2009-04-16 05:32:21 -0400
committerMichal Simek <monstr@monstr.eu>2009-04-23 10:09:18 -0400
commit6714fcc34e1bcf247fe542ebdea36b699ff8e2b8 (patch)
treeb3ead682b00c0ddb5a53e52185e9e85018fdc0d3 /arch/microblaze
parente1c4bd0897b6d03eff4b32197d6ab017f83fc836 (diff)
microblaze: Remove redundant variable
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze')
-rw-r--r--arch/microblaze/kernel/process.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c
index dd15de9cde39..07d4fa339eda 100644
--- a/arch/microblaze/kernel/process.c
+++ b/arch/microblaze/kernel/process.c
@@ -161,7 +161,6 @@ static void kernel_thread_helper(int (*fn)(void *), void *arg)
161int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) 161int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
162{ 162{
163 struct pt_regs regs; 163 struct pt_regs regs;
164 int ret;
165 164
166 memset(&regs, 0, sizeof(regs)); 165 memset(&regs, 0, sizeof(regs));
167 /* store them in non-volatile registers */ 166 /* store them in non-volatile registers */
@@ -171,10 +170,8 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
171 regs.pc = (unsigned long)kernel_thread_helper; 170 regs.pc = (unsigned long)kernel_thread_helper;
172 regs.pt_mode = 1; 171 regs.pt_mode = 1;
173 172
174 ret = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, 173 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
175 &regs, 0, NULL, NULL); 174 &regs, 0, NULL, NULL);
176
177 return ret;
178} 175}
179 176
180unsigned long get_wchan(struct task_struct *p) 177unsigned long get_wchan(struct task_struct *p)