diff options
author | David S. Miller <davem@davemloft.net> | 2006-01-30 16:46:24 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-30 16:46:24 -0800 |
commit | 22f01da398069e823e79f1209518f0913e05fc47 (patch) | |
tree | 1dc89da285ebaf552f90ff899c31b4f188e3e279 /arch/sparc | |
parent | cddfc12e2513a4229bad0d05fde2d40a75c3e197 (diff) | |
download | op-kernel-dev-22f01da398069e823e79f1209518f0913e05fc47.zip op-kernel-dev-22f01da398069e823e79f1209518f0913e05fc47.tar.gz |
[SPARC]: Fix compile failures in math-emu.
Kill debugging default switch cases in do_one_mathemu().
That case is handled properly already and gcc hates
the empty statement that results when the debug code is
disabled.
Pointed out by kaffe.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/math-emu/math.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/sparc/math-emu/math.c b/arch/sparc/math-emu/math.c index be2c809..8613b3e 100644 --- a/arch/sparc/math-emu/math.c +++ b/arch/sparc/math-emu/math.c @@ -323,11 +323,6 @@ static int do_one_mathemu(u32 insn, unsigned long *pfsr, unsigned long *fregs) case FMOVS: case FABSS: case FNEGS: TYPE(2,1,0,1,0,0,0); break; - default: -#ifdef DEBUG_MATHEMU - printk("unknown FPop1: %03lx\n",(insn>>5)&0x1ff); -#endif - break; } } else if ((insn & 0xc1f80000) == 0x81a80000) /* FPOP2 */ { switch ((insn >> 5) & 0x1ff) { @@ -337,11 +332,6 @@ static int do_one_mathemu(u32 insn, unsigned long *pfsr, unsigned long *fregs) case FCMPED: TYPE(3,0,0,2,1,2,1); break; case FCMPQ: TYPE(3,0,0,3,1,3,1); break; case FCMPEQ: TYPE(3,0,0,3,1,3,1); break; - default: -#ifdef DEBUG_MATHEMU - printk("unknown FPop2: %03lx\n",(insn>>5)&0x1ff); -#endif - break; } } |