aboutsummaryrefslogtreecommitdiff
path: root/arch/ppc/math-emu/lfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/math-emu/lfd.c')
-rw-r--r--arch/ppc/math-emu/lfd.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/ppc/math-emu/lfd.c b/arch/ppc/math-emu/lfd.c
deleted file mode 100644
index 7d38101c329..00000000000
--- a/arch/ppc/math-emu/lfd.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <linux/types.h>
-#include <linux/errno.h>
-#include <asm/uaccess.h>
-
-#include "sfp-machine.h"
-#include "double.h"
-
-int
-lfd(void *frD, void *ea)
-{
- if (copy_from_user(frD, ea, sizeof(double)))
- return -EFAULT;
-#ifdef DEBUG
- printk("%s: D %p, ea %p: ", __FUNCTION__, frD, ea);
- dump_double(frD);
- printk("\n");
-#endif
- return 0;
-}