aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/math-emu/fneg.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2006-03-28 17:03:19 +1100
committerPaul Mackerras <paulus@samba.org>2006-03-28 17:03:19 +1100
commitcf66c897d7fa07f57452b1a369aec37d97b11e31 (patch)
treeeb74b71c2ff288f4d77423bb7e54c3c55ef08bf9 /arch/ppc/math-emu/fneg.c
parentMerge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc (diff)
parentpowerpc: remove OCP references (diff)
downloadlinux-dev-cf66c897d7fa07f57452b1a369aec37d97b11e31.tar.xz
linux-dev-cf66c897d7fa07f57452b1a369aec37d97b11e31.zip
Merge branch '85xx' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc
Diffstat (limited to 'arch/ppc/math-emu/fneg.c')
-rw-r--r--arch/ppc/math-emu/fneg.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/ppc/math-emu/fneg.c b/arch/ppc/math-emu/fneg.c
deleted file mode 100644
index fe9a98deff69..000000000000
--- a/arch/ppc/math-emu/fneg.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <linux/types.h>
-#include <linux/errno.h>
-#include <asm/uaccess.h>
-
-int
-fneg(u32 *frD, u32 *frB)
-{
- frD[0] = frB[0] ^ 0x80000000;
- frD[1] = frB[1];
-
-#ifdef DEBUG
- printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
- dump_double(frD);
- printk("\n");
-#endif
-
- return 0;
-}