aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/math-emu/frsqrte.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/math-emu/frsqrte.c')
-rw-r--r--arch/ppc/math-emu/frsqrte.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/ppc/math-emu/frsqrte.c b/arch/ppc/math-emu/frsqrte.c
new file mode 100644
index 000000000000..a11ae1829850
--- /dev/null
+++ b/arch/ppc/math-emu/frsqrte.c
@@ -0,0 +1,12 @@
+#include <linux/types.h>
+#include <linux/errno.h>
+#include <asm/uaccess.h>
+
+int
+frsqrte(void *frD, void *frB)
+{
+#ifdef DEBUG
+ printk("%s: %p %p\n", __FUNCTION__, frD, frB);
+#endif
+ return 0;
+}