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