MIPS: replace open-coded init_dsp
[firefly-linux-kernel-4.4.55.git] / arch / mips / kernel / process.c
index 747a6cfbb709791420eda00018e2020265bd98b5..6ae540e133b2aa592a029a131f541a6619aaaceb 100644 (file)
@@ -64,8 +64,7 @@ void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp)
        regs->cp0_status = status;
        clear_used_math();
        clear_fpu_owner();
-       if (cpu_has_dsp)
-               __init_dsp();
+       init_dsp();
        regs->cp0_epc = pc;
        regs->regs[29] = sp;
 }