diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-12-05 13:47:25 +0000 |
---|---|---|
committer | <ralf@denk.linux-mips.net> | 2006-01-10 13:39:04 +0000 |
commit | 6c35585273b26a580b2e2ad3d6a7db282308eec5 (patch) | |
tree | ae81213a06a1f2728050319b47f51308d9d197ca /include | |
parent | da2c9ed55b0c7e8107f23530bde293239a0b5091 (diff) |
MIPS: DSP: eleminate used_dsp.
used_dsp was meant to be used like used_math - but since the FPU context
is small and lazy context switching is a stupid idea on multiprocessors
this idea only got halfway implemented and those bits are were now
breaking ptrace.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mips/processor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/asm-mips/processor.h b/include/asm-mips/processor.h index f1980c6c3bc..de53055a62a 100644 --- a/include/asm-mips/processor.h +++ b/include/asm-mips/processor.h @@ -103,7 +103,6 @@ typedef __u32 dspreg_t; struct mips_dsp_state { dspreg_t dspr[NUM_DSP_REGS]; unsigned int dspcontrol; - unsigned short used_dsp; }; #define INIT_DSP {{0,},} |