Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3056b1c authored by Paul Burton's avatar Paul Burton Committed by Ralf Baechle
Browse files

MIPS: replace open-coded init_dsp



There is already an init_dsp function which checks cpu_has_dsp & calls
__init_dsp if it does. Make use of it instead of duplicating the same
code.

Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
Reviewed-by: default avatarQais Yousef <qais.yousef@imgtec.com>
Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6148/
parent 8c0f8ab0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;
}