commit | e50c0a8fa60da9ac0e0a70caa8a3a803815c1f2f | [log] [tgz] |
---|---|---|
author | Ralf Baechle <ralf@linux-mips.org> | Tue May 31 11:49:19 2005 +0000 |
committer | Ralf Baechle <ralf@linux-mips.org> | Sat Oct 29 19:31:17 2005 +0100 |
tree | 1928e8b0a4b7fb615e5a9f65dc934ba2e74cb9cd | |
parent | 10f650db1bcc193ea07d4f8c2f07315da38ea0c4 [diff] [blame] |
Support the MIPS32 / MIPS64 DSP ASE. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 6fc51b2..9253dcc 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c
@@ -549,3 +549,12 @@ } __setup("nofpu", fpu_disable); + +int __init dsp_disable(char *s) +{ + cpu_data[0].ases &= ~MIPS_ASE_DSP; + + return 1; +} + +__setup("nodsp", dsp_disable);