aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/kernel/process.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
index 747a6cfbb709..6ae540e133b2 100644
--- a/arch/mips/kernel/process.c
+++ b/arch/mips/kernel/process.c
@@ -64,8 +64,7 @@ void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp)
64 regs->cp0_status = status; 64 regs->cp0_status = status;
65 clear_used_math(); 65 clear_used_math();
66 clear_fpu_owner(); 66 clear_fpu_owner();
67 if (cpu_has_dsp) 67 init_dsp();
68 __init_dsp();
69 regs->cp0_epc = pc; 68 regs->cp0_epc = pc;
70 regs->regs[29] = sp; 69 regs->regs[29] = sp;
71} 70}