Index: arch/mips/src/fpu_context.c
===================================================================
--- arch/mips/src/fpu_context.c	(revision 0750a3a7532e46d20b33c6acdce06b416333a25e)
+++ arch/mips/src/fpu_context.c	(revision 79f1f38f331a80351aa543a6fed4a212c5e49201)
@@ -31,33 +31,19 @@
 #include <fpu_context.h>
 
-void fpu_context_save(void)
+void fpu_context_save(fpu_context_t *fctx)
 {
 }
 
 
-void fpu_context_restore()
+void fpu_context_restore(fpu_context_t *fctx)
 {
 }
 
 
-void fpu_lazy_context_save()
+void fpu_lazy_context_save(fpu_context_t *fctx)
 {
-/*
-	pushl %eax
-        mov 8(%esp),%eax
-        fxsave (%eax)
-        popl %eax
-        ret
-*/	
 }
 
-void fpu_lazy_context_restore()
+void fpu_lazy_context_restore(fpu_context_t *fctx)
 {
-/*
-	pushl %eax
-        mov 8(%esp),%eax
-        fxrstor (%eax)
-        popl %eax
-        ret
-*/	
 }
