aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/math-emu/fabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/math-emu/fabs.c')
-rw-r--r--arch/ppc/math-emu/fabs.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/ppc/math-emu/fabs.c b/arch/ppc/math-emu/fabs.c
deleted file mode 100644
index 41f0617f3d3a..000000000000
--- a/arch/ppc/math-emu/fabs.c
+++ /dev/null
@@ -1,18 +0,0 @@
1#include <linux/types.h>
2#include <linux/errno.h>
3#include <asm/uaccess.h>
4
5int
6fabs(u32 *frD, u32 *frB)
7{
8 frD[0] = frB[0] & 0x7fffffff;
9 frD[1] = frB[1];
10
11#ifdef DEBUG
12 printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
13 dump_double(frD);
14 printk("\n");
15#endif
16
17 return 0;
18}