powerpc/math-emu: Fix decoding of some instructions
[cascardo/linux.git] / arch / powerpc / math-emu / fre.c
diff --git a/arch/powerpc/math-emu/fre.c b/arch/powerpc/math-emu/fre.c
new file mode 100644 (file)
index 0000000..49ccf2c
--- /dev/null
@@ -0,0 +1,11 @@
+#include <linux/types.h>
+#include <linux/errno.h>
+#include <asm/uaccess.h>
+
+int fre(void *frD, void *frB)
+{
+#ifdef DEBUG
+       printk("%s: %p %p\n", __func__, frD, frB);
+#endif
+       return -ENOSYS;
+}