aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/math-emu/fmr.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/math-emu/fmr.c')
-rw-r--r--arch/ppc/math-emu/fmr.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/ppc/math-emu/fmr.c b/arch/ppc/math-emu/fmr.c
deleted file mode 100644
index 28df700c0c7e..000000000000
--- a/arch/ppc/math-emu/fmr.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <linux/types.h>
-#include <linux/errno.h>
-#include <asm/uaccess.h>
-
-int
-fmr(u32 *frD, u32 *frB)
-{
- frD[0] = frB[0];
- frD[1] = frB[1];
-
-#ifdef DEBUG
- printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
- dump_double(frD);
- printk("\n");
-#endif
-
- return 0;
-}